summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_doctest.py
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2014-04-04 13:34:17 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2014-04-04 13:34:17 (GMT)
commite09fb7198ae2e4f737db7369006ad19e51699fbf (patch)
tree52a94575cd518a23b79430a0d89c66cbc839a2d5 /Lib/test/test_doctest.py
parentbcc174615ca2bd5fe60442407ca1411759d823cf (diff)
downloadcpython-e09fb7198ae2e4f737db7369006ad19e51699fbf.zip
cpython-e09fb7198ae2e4f737db7369006ad19e51699fbf.tar.gz
cpython-e09fb7198ae2e4f737db7369006ad19e51699fbf.tar.bz2
fix #21076: turn signal module constants into enums
Diffstat (limited to 'Lib/test/test_doctest.py')
-rw-r--r--Lib/test/test_doctest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py
index 56193e8..a1029ed 100644
--- a/Lib/test/test_doctest.py
+++ b/Lib/test/test_doctest.py
@@ -2897,7 +2897,7 @@ Invalid doctest option:
def test_main():
# Check the doctest cases in doctest itself:
- support.run_doctest(doctest, verbosity=True)
+ ret = support.run_doctest(doctest, verbosity=True)
# Check the doctest cases defined here:
from test import test_doctest
support.run_doctest(test_doctest, verbosity=True)