##// END OF EJS Templates
tests: stop direct symbol import of pprint.pprint in tests-minirst
Yuya Nishihara -
r28840:8717d460 default
parent child Browse files
Show More
@@ -1,7 +1,5 b''
1 from __future__ import absolute_import, print_function
1 from __future__ import absolute_import, print_function
2 from pprint import (
2 import pprint
3 pprint,
4 )
5 from mercurial import (
3 from mercurial import (
6 minirst,
4 minirst,
7 )
5 )
@@ -18,7 +16,7 b' def debugformat(text, form, **kwargs):'
18 if type(out) == tuple:
16 if type(out) == tuple:
19 print(out[0][:-1])
17 print(out[0][:-1])
20 print("-" * 70)
18 print("-" * 70)
21 pprint(out[1])
19 pprint.pprint(out[1])
22 else:
20 else:
23 print(out[:-1])
21 print(out[:-1])
24 print("-" * 70)
22 print("-" * 70)
General Comments 0
You need to be logged in to leave comments. Login now