gh-93096: Load doctests in test_itertools (#131133)

This commit is contained in:
donBarbos 2025-03-12 11:40:59 +04:00 committed by GitHub
parent 48cca72a7f
commit 15a8412b5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
import doctest
import unittest
import itertools
from test import support
from test.support import threading_helper, script_helper
from itertools import *
@ -2531,7 +2532,7 @@ class SizeofTest(unittest.TestCase):
def load_tests(loader, tests, pattern):
tests.addTest(doctest.DocTestSuite())
tests.addTest(doctest.DocTestSuite(itertools))
return tests