tests/test-filelog.py
changeset 29205 a0939666b836
parent 28805 efc739551c17
child 30564 d83ca854fa21
equal deleted inserted replaced
29204:ce2d81aafbae 29205:a0939666b836
     1 #!/usr/bin/env python
     1 #!/usr/bin/env python
     2 """
     2 """
     3 Tests the behavior of filelog w.r.t. data starting with '\1\n'
     3 Tests the behavior of filelog w.r.t. data starting with '\1\n'
     4 """
     4 """
     5 from __future__ import absolute_import, print_function
     5 from __future__ import absolute_import, print_function
       
     6 
       
     7 from mercurial.node import (
       
     8     hex,
       
     9     nullid,
       
    10 )
     6 from mercurial import (
    11 from mercurial import (
     7     hg,
    12     hg,
     8     ui as uimod,
    13     ui as uimod,
     9 )
       
    10 from mercurial.node import (
       
    11     hex,
       
    12     nullid,
       
    13 )
    14 )
    14 
    15 
    15 myui = uimod.ui()
    16 myui = uimod.ui()
    16 repo = hg.repository(myui, path='.', create=True)
    17 repo = hg.repository(myui, path='.', create=True)
    17 
    18