##// END OF EJS Templates
tests: move stdlib imports before mercurial modules in test-parseindex2
Yuya Nishihara -
r28841:e155b8d5 default
parent child Browse files
Show More
@@ -4,6 +4,11 b' It also checks certain aspects of the pa'
4 """
4 """
5
5
6 from __future__ import absolute_import, print_function
6 from __future__ import absolute_import, print_function
7
8 import struct
9 import subprocess
10 import sys
11
7 from mercurial import (
12 from mercurial import (
8 parsers,
13 parsers,
9 )
14 )
@@ -11,9 +16,6 b' from mercurial.node import ('
11 nullid,
16 nullid,
12 nullrev,
17 nullrev,
13 )
18 )
14 import struct
15 import subprocess
16 import sys
17
19
18 # original python implementation
20 # original python implementation
19 def gettype(q):
21 def gettype(q):
General Comments 0
You need to be logged in to leave comments. Login now