Mercurial > hg
comparison mercurial/debugcommands.py @ 32367:a9c71d578a1c
osutil: switch to policy importer
"make clean" is recommended to test this change, though C API compatibility
should be preserved.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Fri, 12 Aug 2016 11:35:17 +0900 |
parents | a275186b989a |
children | 008d37c4d783 |
comparison
equal
deleted
inserted
replaced
32366:8e0327dae3f4 | 32367:a9c71d578a1c |
---|---|
1027 try: | 1027 try: |
1028 from . import ( | 1028 from . import ( |
1029 base85, | 1029 base85, |
1030 bdiff, | 1030 bdiff, |
1031 mpatch, | 1031 mpatch, |
1032 ) | |
1033 from .cext import ( | |
1032 osutil, | 1034 osutil, |
1033 ) | 1035 ) |
1034 dir(bdiff), dir(mpatch), dir(base85), dir(osutil) # quiet pyflakes | 1036 dir(bdiff), dir(mpatch), dir(base85), dir(osutil) # quiet pyflakes |
1035 except Exception as inst: | 1037 except Exception as inst: |
1036 err = inst | 1038 err = inst |