[3.13] gh-93096: Fix loading doctests in test_pickle (GH-131069) (GH-131080)

(cherry picked from commit 3bb20d13a8)

Co-authored-by: donBarbos <donbarbos@proton.me>
This commit is contained in:
Miss Islington (bot) 2025-03-11 11:49:14 +01:00 committed by GitHub
parent 3e173e505a
commit 68a1591bec
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