components/python/python34/patches/23-doctest.patch
author John Beck <John.Beck@Oracle.COM>
Tue, 22 Dec 2015 07:57:25 -0800
changeset 5229 b7b91ddbbdce
parent 3905 397b904fa22e
permissions -rw-r--r--
22456127 Upgrade Python 3.4 line to 3.4.4

This patch was developed in-house and has been submitted upstream:
http://bugs.python.org/issue23584

--- Python-3.4.4rc1/Lib/test/test_doctest.py.~1~	2015-12-06 15:54:36.000000000 -0800
+++ Python-3.4.4rc1/Lib/test/test_doctest.py	2015-12-09 08:13:21.741427836 -0800
@@ -2627,7 +2627,7 @@
     >>> with open(fn, 'wb') as f:
     ...    f.write(b'Test:\r\n\r\n  >>> x = 1 + 1\r\n\r\nDone.\r\n')
     35
-    >>> doctest.testfile(fn, False)
+    >>> doctest.testfile(fn, False, verbose=False)
     TestResults(failed=0, attempted=1)
     >>> os.remove(fn)
 
@@ -2637,7 +2637,7 @@
     >>> with open(fn, 'wb') as f:
     ...     f.write(b'Test:\n\n  >>> x = 1 + 1\n\nDone.\n')
     30
-    >>> doctest.testfile(fn, False)
+    >>> doctest.testfile(fn, False, verbose=False)
     TestResults(failed=0, attempted=1)
     >>> os.remove(fn)