D3476: tests: use stringutil.pprint instead of pprint.pprint in test-minirst.py

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Tue May 8 09:34:41 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG672f51ec0d47: tests: use stringutil.pprint instead of pprint.pprint in test-minirst.py (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3476?vs=8503&id=8531

REVISION DETAIL
  https://phab.mercurial-scm.org/D3476

AFFECTED FILES
  tests/test-minirst.py

CHANGE DETAILS

diff --git a/tests/test-minirst.py b/tests/test-minirst.py
--- a/tests/test-minirst.py
+++ b/tests/test-minirst.py
@@ -1,8 +1,10 @@
 from __future__ import absolute_import, print_function
-import pprint
 from mercurial import (
     minirst,
 )
+from mercurial.utils import (
+    stringutil,
+)
 
 def debugformat(text, form, **kwargs):
     if form == 'html':
@@ -16,7 +18,7 @@
     if type(out) == tuple:
         print(out[0][:-1])
         print("-" * 70)
-        pprint.pprint(out[1])
+        print(stringutil.pprint(out[1], bprefix=False))
     else:
         print(out[:-1])
     print("-" * 70)
@@ -264,4 +266,3 @@
 print(table)
 
 debugformats(b'table+nl', table)
-



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list