https://github.com/python/cpython/commit/3bb20d13a88a178dae809016b3d0a457f38aa686 commit: 3bb20d13a88a178dae809016b3d0a457f38aa686 branch: main author: donBarbos <donbar...@proton.me> committer: serhiy-storchaka <storch...@gmail.com> date: 2025-03-11T12:25:25+02:00 summary:
gh-93096: Load doctests in `test_pickle` (#131069) Add doctests to unittest for `pickle` 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 -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com