##// END OF EJS Templates
py3: use absolute_import in test-parseindex2.py
Robert Stanca -
r28753:0c229538 default
parent child Browse files
Show More
@@ -60,7 +60,6 b''
60 60 tests/test-lrucachedict.py not using absolute_import
61 61 tests/test-lrucachedict.py requires print_function
62 62 tests/test-manifest.py not using absolute_import
63 tests/test-parseindex2.py not using absolute_import
64 63 tests/test-parseindex2.py requires print_function
65 64 tests/test-pathencode.py not using absolute_import
66 65 tests/test-pathencode.py requires print_function
@@ -3,8 +3,14 b''
3 3 It also checks certain aspects of the parsers module as a whole.
4 4 """
5 5
6 from mercurial import parsers
7 from mercurial.node import nullid, nullrev
6 from __future__ import absolute_import
7 from mercurial import (
8 parsers,
9 )
10 from mercurial.node import (
11 nullid,
12 nullrev,
13 )
8 14 import struct
9 15 import subprocess
10 16 import sys
General Comments 0
You need to be logged in to leave comments. Login now