##// END OF EJS Templates
tests/fakedirstatewritetime.py: use absolute_import
Gregory Szorc -
r27283:b38adef6 default
parent child Browse files
Show More
@@ -5,7 +5,15 b''
5 # - 'workingctx._checklookup()' (= 'repo.status()')
5 # - 'workingctx._checklookup()' (= 'repo.status()')
6 # - 'committablectx.markcommitted()'
6 # - 'committablectx.markcommitted()'
7
7
8 from mercurial import context, dirstate, extensions, parsers, util
8 from __future__ import absolute_import
9
10 from mercurial import (
11 context,
12 dirstate,
13 extensions,
14 parsers,
15 util,
16 )
9
17
10 def pack_dirstate(fakenow, orig, dmap, copymap, pl, now):
18 def pack_dirstate(fakenow, orig, dmap, copymap, pl, now):
11 # execute what original parsers.pack_dirstate should do actually
19 # execute what original parsers.pack_dirstate should do actually
@@ -143,7 +143,6 b''
143 mercurial/util.py not using absolute_import
143 mercurial/util.py not using absolute_import
144 mercurial/windows.py not using absolute_import
144 mercurial/windows.py not using absolute_import
145 setup.py not using absolute_import
145 setup.py not using absolute_import
146 tests/fakedirstatewritetime.py not using absolute_import
147 tests/fakepatchtime.py not using absolute_import
146 tests/fakepatchtime.py not using absolute_import
148 tests/filterpyflakes.py not using absolute_import
147 tests/filterpyflakes.py not using absolute_import
149 tests/filterpyflakes.py requires print_function
148 tests/filterpyflakes.py requires print_function
General Comments 0
You need to be logged in to leave comments. Login now