From: Tim Peters Date: Thu, 30 Jan 2003 21:27:37 +0000 (+0000) Subject: pickle.py has a few doctest'ed internal functions, so run their tests. X-Git-Tag: v2.3c1~2171 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e14295cf5f5a21dd94a540341202deec9e58b4c9;p=thirdparty%2FPython%2Fcpython.git pickle.py has a few doctest'ed internal functions, so run their tests. --- diff --git a/Lib/test/test_pickle.py b/Lib/test/test_pickle.py index 887090420545..ac2a59659b29 100644 --- a/Lib/test/test_pickle.py +++ b/Lib/test/test_pickle.py @@ -69,6 +69,7 @@ def test_main(): suite.addTest(loader.loadTestsFromTestCase(PicklerTests)) suite.addTest(loader.loadTestsFromTestCase(PersPicklerTests)) test_support.run_suite(suite) + test_support.run_doctest(pickle) if __name__ == "__main__": test_main()