mercurial/util.py
changeset 28818 6041fb8f2da8
parent 28497 906fece80cfa
child 28825 87c6ad2251d8
equal deleted inserted replaced
28817:e1d26630443d 28818:6041fb8f2da8
    41     encoding,
    41     encoding,
    42     error,
    42     error,
    43     i18n,
    43     i18n,
    44     osutil,
    44     osutil,
    45     parsers,
    45     parsers,
       
    46     pycompat,
    46 )
    47 )
       
    48 
       
    49 for attr in (
       
    50     'empty',
       
    51     'queue',
       
    52 ):
       
    53     globals()[attr] = getattr(pycompat, attr)
    47 
    54 
    48 if os.name == 'nt':
    55 if os.name == 'nt':
    49     from . import windows as platform
    56     from . import windows as platform
    50 else:
    57 else:
    51     from . import posix as platform
    58     from . import posix as platform