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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e14295cf5f5a21dd94a540341202deec9e58b4c9;p=python 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 8870904205..ac2a59659b 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()