[3.12] gh-93096: Fix loading doctests in test_pickle (GH-131069) (GH-131081)

(cherry picked from commit 3bb20d13a8)

Co-authored-by: donBarbos <donbarbos@proton.me>
This commit is contained in:
Miss Islington (bot) 2025-03-11 11:42:47 +01:00 committed by GitHub
parent 33605da91c
commit bfad0b56d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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