We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
typing.py
1 parent 0ea6454 commit 593120fCopy full SHA for 593120f
1 file changed
Lib/test/test_typing.py
@@ -9282,5 +9282,11 @@ def test_is_not_instance_of_iterable(self):
9282
self.assertNotIsInstance(type_to_test, collections.abc.Iterable)
9283
9284
9285
+def load_tests(loader, tests, pattern):
9286
+ import doctest
9287
+ tests.addTests(doctest.DocTestSuite(typing))
9288
+ return tests
9289
+
9290
9291
if __name__ == '__main__':
9292
main()
0 commit comments