From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 10 Jan 2019 16:02:26 +0000 (-0800) Subject: bpo-24746: Fix doctest failures when running the testsuite with -R (GH-11501) X-Git-Tag: v3.7.3rc1~159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1cbd17c6987afc48c16caa7ccc7d19b01fbd39f2;p=thirdparty%2FPython%2Fcpython.git bpo-24746: Fix doctest failures when running the testsuite with -R (GH-11501) (cherry picked from commit c5dc60ea858b8ccf78e8d26db81c307a8f9b2314) Co-authored-by: Pablo Galindo --- diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index 6081009006df..4a3c488738d3 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -2450,8 +2450,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.