pickle.py has a few doctest'ed internal functions, so run their tests.

This commit is contained in:
Tim Peters 2003-01-30 21:27:37 +00:00
parent b4ff1113ca
commit e14295cf5f

View file

@ -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()