We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_itertools
1 parent d23a0f2 commit 65b5829Copy full SHA for 65b5829
1 file changed
Lib/test/test_itertools.py
@@ -1,5 +1,6 @@
1
import doctest
2
import unittest
3
+import itertools
4
from test import support
5
from test.support import threading_helper, script_helper
6
from itertools import *
@@ -2844,7 +2845,7 @@ def test_permutations_sizeof(self):
2844
2845
2846
2847
def load_tests(loader, tests, pattern):
- tests.addTest(doctest.DocTestSuite())
2848
+ tests.addTest(doctest.DocTestSuite(itertools))
2849
return tests
2850
2851
0 commit comments