summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pdb.py
diff options
context:
space:
mode:
authorXavier de Gaye <xdegaye@users.sourceforge.net>2016-10-02 09:42:22 (GMT)
committerXavier de Gaye <xdegaye@users.sourceforge.net>2016-10-02 09:42:22 (GMT)
commit02e247fbe1a68920abd7fe5fbf6ad8119374f000 (patch)
tree8dd437fff627841e09fdb48e2c50d26d03ad4e8e /Lib/test/test_pdb.py
parentd261cb62296586ab4aaaed7e5ebb7542135d9c15 (diff)
downloadcpython-02e247fbe1a68920abd7fe5fbf6ad8119374f000.zip
cpython-02e247fbe1a68920abd7fe5fbf6ad8119374f000.tar.gz
cpython-02e247fbe1a68920abd7fe5fbf6ad8119374f000.tar.bz2
Issue #28338: Restore test_pdb doctests.
Diffstat (limited to 'Lib/test/test_pdb.py')
-rw-r--r--Lib/test/test_pdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py
index 74417c1..994e088 100644
--- a/Lib/test/test_pdb.py
+++ b/Lib/test/test_pdb.py
@@ -1093,7 +1093,7 @@ class PdbTestCase(unittest.TestCase):
def load_tests(*args):
from test import test_pdb
- suites = [unittest.makeSuite(PdbTestCase)]
+ suites = [unittest.makeSuite(PdbTestCase), doctest.DocTestSuite(test_pdb)]
return unittest.TestSuite(suites)