tests/test-parseindex2.py
changeset 28753 0c2295384eea
parent 27637 b502138f5faa
child 28754 7e5744e8334c
equal deleted inserted replaced
28752:6b2f9a4e2f97 28753:0c2295384eea
     1 """This unit test primarily tests parsers.parse_index2().
     1 """This unit test primarily tests parsers.parse_index2().
     2 
     2 
     3 It also checks certain aspects of the parsers module as a whole.
     3 It also checks certain aspects of the parsers module as a whole.
     4 """
     4 """
     5 
     5 
     6 from mercurial import parsers
     6 from __future__ import absolute_import
     7 from mercurial.node import nullid, nullrev
     7 from mercurial import (
       
     8     parsers,
       
     9 )
       
    10 from mercurial.node import (
       
    11     nullid,
       
    12     nullrev,
       
    13 )
     8 import struct
    14 import struct
     9 import subprocess
    15 import subprocess
    10 import sys
    16 import sys
    11 
    17 
    12 # original python implementation
    18 # original python implementation