diff options
| author | Alexander Smirnov <[email protected]> | 2024-06-18 08:31:45 +0000 |
|---|---|---|
| committer | Alexander Smirnov <[email protected]> | 2024-06-18 08:31:45 +0000 |
| commit | 8da3a80eb37bb357a4a994464851104565fd9490 (patch) | |
| tree | 021aa0770c7bb74d27d8731629ce6f5abd1e84e9 /contrib/python/ipython/py3/IPython/testing/plugin/ipdoctest.py | |
| parent | 05cc35d98bf2bd929c00b02fcd98fd65a1b676ad (diff) | |
| parent | d68a678bf36d213cb890d8bdfbdf34df6a40f8c1 (diff) | |
Merge branch 'rightlib' into mergelibs-240618-0830
Diffstat (limited to 'contrib/python/ipython/py3/IPython/testing/plugin/ipdoctest.py')
| -rw-r--r-- | contrib/python/ipython/py3/IPython/testing/plugin/ipdoctest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/python/ipython/py3/IPython/testing/plugin/ipdoctest.py b/contrib/python/ipython/py3/IPython/testing/plugin/ipdoctest.py index e7edf9837f1..0e6a7efa968 100644 --- a/contrib/python/ipython/py3/IPython/testing/plugin/ipdoctest.py +++ b/contrib/python/ipython/py3/IPython/testing/plugin/ipdoctest.py @@ -68,7 +68,7 @@ class IPDoctestOutputChecker(doctest.OutputChecker): ret = doctest.OutputChecker.check_output(self, want, got, optionflags) if not ret and self.random_re.search(want): - #print >> sys.stderr, 'RANDOM OK:',want # dbg + # print('RANDOM OK:',want, file=sys.stderr) # dbg return True return ret @@ -141,7 +141,7 @@ class IPDocTestParser(doctest.DocTestParser): used for error messages. """ - #print 'Parse string:\n',string # dbg + # print('Parse string:\n',string) # dbg string = string.expandtabs() # If all lines begin with the same indentation, then strip it. |
