gh-93096: Load doctests in test_pickle (#131069)

Add doctests to unittest for `pickle`
This commit is contained in:
donBarbos 2025-03-11 14:25:25 +04:00 committed by GitHub
parent ad0f618ab3
commit 3bb20d13a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -700,7 +700,7 @@ class CompatPickleTests(unittest.TestCase):
def load_tests(loader, tests, pattern):
tests.addTest(doctest.DocTestSuite())
tests.addTest(doctest.DocTestSuite(pickle))
return tests