Thanks to visit codestin.com Credit goes to github.com
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 48cca72 commit 15a8412Copy full SHA for 15a8412
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 *
@@ -2531,7 +2532,7 @@ def test_permutations_sizeof(self):
2531
2532
2533
2534
def load_tests(loader, tests, pattern):
- tests.addTest(doctest.DocTestSuite())
2535
+ tests.addTest(doctest.DocTestSuite(itertools))
2536
return tests
2537
2538
0 commit comments