You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/stubtest_allowlists/py3_common.txt
+40-40
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ tkinter.tix.[A-Z_]+
99
99
tkinter.tix.TclVersion
100
100
tkinter.tix.TkVersion
101
101
traceback.TracebackException.from_exception # explicitly expanding arguments going into TracebackException __init__
102
-
typing.IO.__next__ # Added because IO streams are iterable. See https://github.com/python/typeshed/commit/97bc450acd60c1bcdafef3ce8fbe3b95a9c0cac3
102
+
typing(_extensions)?\.IO\.__next__ # Added because IO streams are iterable. See https://github.com/python/typeshed/commit/97bc450acd60c1bcdafef3ce8fbe3b95a9c0cac3
103
103
typing.type_check_only # typing decorator that is not available at runtime
104
104
unittest.mock.patch # It's a complicated overload and I haven't been able to figure out why stubtest doesn't like it
105
105
urllib.request.HTTPPasswordMgrWithPriorAuth.__init__ # Args are passed as is to super, so super args are specified
@@ -383,52 +383,52 @@ tempfile._TemporaryFileWrapper.[\w_]+ # Dynamically specified by __getattr__, a
383
383
typing_extensions\._SpecialForm.*
384
384
typing_extensions\.TypeVar.*
385
385
typing_extensions\.ParamSpec.*
386
-
typing\.Generic
386
+
typing(_extensions)?\.Generic
387
387
typing\.Protocol
388
+
typing_extensions\._TypedDict\..*
388
389
389
390
# Special primitives
390
391
typing_extensions\.Annotated
391
392
typing_extensions\.NamedTuple
392
393
typing_extensions\.LiteralString
393
394
typing_extensions\.Coroutine
394
395
typing_extensions\.Awaitable
395
-
typing_extensions\.AsyncIterator
396
-
typing_extensions\.AsyncIterable
397
-
typing_extensions\.AsyncGenerator
398
-
typing\.ValuesView
399
-
typing\.Sized
400
-
typing\.Sequence
401
-
typing\.Reversible
402
-
typing\.Pattern
403
-
typing\.MutableSet
404
-
typing\.MutableSequence
405
-
typing\.MutableMapping
406
-
typing\.Match
407
-
typing\.MappingView
408
-
typing\.Mapping
409
-
typing\.KeysView
410
-
typing\.Iterator
411
-
typing\.Iterable
412
-
typing\.ItemsView
413
-
typing\.Hashable
414
-
typing\.Generator
415
-
typing\.Coroutine
416
-
typing\.Collection
417
-
typing\.Container
396
+
typing(_extensions)?\.AsyncIterator
397
+
typing(_extensions)?\.AsyncIterable
398
+
typing(_extensions)?\.AsyncGenerator
399
+
typing(_extensions)?\.ValuesView
400
+
typing(_extensions)?\.Sized
401
+
typing(_extensions)?\.Sequence
402
+
typing(_extensions)?\.Reversible
403
+
typing(_extensions)?\.Pattern
404
+
typing(_extensions)?\.MutableSet
405
+
typing(_extensions)?\.MutableSequence
406
+
typing(_extensions)?\.MutableMapping
407
+
typing(_extensions)?\.Match
408
+
typing(_extensions)?\.MappingView
409
+
typing(_extensions)?\.Mapping
410
+
typing(_extensions)?\.KeysView
411
+
typing(_extensions)?\.Iterator
412
+
typing(_extensions)?\.Iterable
413
+
typing(_extensions)?\.ItemsView
414
+
typing(_extensions)?\.Hashable
415
+
typing(_extensions)?\.Generator
416
+
typing(_extensions)?\.Coroutine
417
+
typing(_extensions)?\.Collection
418
+
typing(_extensions)?\.Container
418
419
typing\.ByteString
419
-
typing\.AwaitableGenerator
420
-
typing\.Awaitable
421
-
typing\.AsyncIterator
422
-
typing\.AsyncIterable
423
-
typing\.AsyncGenerator
424
-
typing\.AbstractSet
420
+
typing(_extensions)?\.AwaitableGenerator
421
+
typing(_extensions)?\.Awaitable
422
+
typing(_extensions)?\.AbstractSet
425
423
426
424
typing_extensions.NewType.__mro_entries__ # just exists for an error message
0 commit comments