From: Pablo Galindo Date: Thu, 10 Jan 2019 14:29:40 +0000 (+0000) Subject: bpo-24746: Fix doctest failures when running the testsuite with -R (#11501) X-Git-Tag: v3.8.0a1~120 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5dc60ea858b8ccf78e8d26db81c307a8f9b2314;p=thirdparty%2FPython%2Fcpython.git bpo-24746: Fix doctest failures when running the testsuite with -R (#11501) --- diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index c40c38926873..f1013f257259 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -2451,8 +2451,7 @@ def test_unittest_reportflags(): Then the default eporting options are ignored: >>> result = suite.run(unittest.TestResult()) - """ - """ + *NOTE*: These doctest are intentionally not placed in raw string to depict the trailing whitespace using `\x20` in the diff below.