##// END OF EJS Templates
tests: replace imported module to avoid check-code.py error...
FUJIWARA Katsunori -
r41882:67333663 default
parent child Browse files
Show More
@@ -290,7 +290,7 b' hg status -A:'
290
290
291 $ hg status -A -Tpickle > pickle
291 $ hg status -A -Tpickle > pickle
292 >>> from __future__ import print_function
292 >>> from __future__ import print_function
293 >>> import pickle
293 >>> from mercurial.util import pickle
294 >>> data = sorted((x[b'status'].decode(), x[b'path'].decode()) for x in pickle.load(open("pickle", r"rb")))
294 >>> data = sorted((x[b'status'].decode(), x[b'path'].decode()) for x in pickle.load(open("pickle", r"rb")))
295 >>> for s, p in data: print("%s %s" % (s, p))
295 >>> for s, p in data: print("%s %s" % (s, p))
296 ! deleted
296 ! deleted
General Comments 0
You need to be logged in to leave comments. Login now