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 afffd97 commit 969631aCopy full SHA for 969631a
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 *
@@ -2807,7 +2808,7 @@ def test_permutations_sizeof(self):
2807
2808
2809
2810
def load_tests(loader, tests, pattern):
- tests.addTest(doctest.DocTestSuite())
2811
+ tests.addTest(doctest.DocTestSuite(itertools))
2812
return tests
2813
2814
0 commit comments