mercurial/scmutil.py
changeset 30314 365812902904
parent 30309 4b1af1c867fa
child 30417 854190becacb
equal deleted inserted replaced
30313:392633d7860e 30314:365812902904
    38 else:
    38 else:
    39     from . import scmposix as scmplatform
    39     from . import scmposix as scmplatform
    40 
    40 
    41 systemrcpath = scmplatform.systemrcpath
    41 systemrcpath = scmplatform.systemrcpath
    42 userrcpath = scmplatform.userrcpath
    42 userrcpath = scmplatform.userrcpath
    43 termwidth = scmplatform.termwidth
    43 termsize = scmplatform.termsize
    44 
    44 
    45 class status(tuple):
    45 class status(tuple):
    46     '''Named tuple with a list of files per status. The 'deleted', 'unknown'
    46     '''Named tuple with a list of files per status. The 'deleted', 'unknown'
    47        and 'ignored' properties are only relevant to the working copy.
    47        and 'ignored' properties are only relevant to the working copy.
    48     '''
    48     '''