comparison tests/test-hybridencode.py @ 28749:2fa5c7c1df8c

py3: use absolute_import in test-hybridencode.py
author Robert Stanca <robert.stanca7@gmail.com>
date Mon, 04 Apr 2016 01:33:08 +0300
parents 297ea0df75d0
children 2b0d7be90fc4
comparison
equal deleted inserted replaced
28748:c2ba5a810fa1 28749:2fa5c7c1df8c
1 from mercurial import store 1 from __future__ import absolute_import
2 from mercurial import (
3 store,
4 )
2 5
3 def show(s): 6 def show(s):
4 # show test input 7 # show test input
5 print "A = '%s'" % s.encode("string_escape") 8 print "A = '%s'" % s.encode("string_escape")
6 9