https://github.com/python/cpython/commit/68a1591bec822ea0818be885b0883bc170ab1a7d commit: 68a1591bec822ea0818be885b0883bc170ab1a7d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka <[email protected]> date: 2025-03-11T10:49:14Z summary:
[3.13] gh-93096: Fix loading doctests in test_pickle (GH-131069) (GH-131080) (cherry picked from commit 3bb20d13a88a178dae809016b3d0a457f38aa686) Co-authored-by: donBarbos <[email protected]> files: M Lib/test/test_pickle.py diff --git a/Lib/test/test_pickle.py b/Lib/test/test_pickle.py index 4ec966d8351490..385b257164ef95 100644 --- a/Lib/test/test_pickle.py +++ b/Lib/test/test_pickle.py @@ -700,7 +700,7 @@ def test_multiprocessing_exceptions(self): def load_tests(loader, tests, pattern): - tests.addTest(doctest.DocTestSuite()) + tests.addTest(doctest.DocTestSuite(pickle)) return tests _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
