components/python/python35/patches/23-doctest.patch
changeset 6447 56a2f066191a
parent 6446 b54de573b4e9
child 6448 9c7d6df84360
--- a/components/python/python35/patches/23-doctest.patch	Thu Jul 21 12:52:12 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-This patch was developed in-house and has been submitted upstream:
-http://bugs.python.org/issue23584
-
---- Python-3.5.0a4/Lib/test/test_doctest.py.~1~	2015-04-20 00:37:51.000000000 -0700
-+++ Python-3.5.0a4/Lib/test/test_doctest.py	2015-04-20 14:15:20.031951150 -0700
-@@ -2647,7 +2647,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)
- 
-@@ -2657,7 +2657,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)
-