File tree Expand file tree Collapse file tree 6 files changed +12
-0
lines changed
tests/stubtest_allowlists Expand file tree Collapse file tree 6 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ array: 2.7-
6262ast: 2.7-
6363asynchat: 2.7-
6464asyncio: 3.4-
65+ asyncio.mixins: 3.10-
6566asyncio.compat: 3.4-3.6
6667asyncio.exceptions: 3.8-
6768asyncio.format_helpers: 3.7-
Original file line number Diff line number Diff line change 1+ import threading
2+ from typing import NoReturn
3+
4+ _global_lock : threading .Lock
5+
6+ class _LoopBoundMixin :
7+ def __init__ (self , * , loop : NoReturn = ...) -> None : ...
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ asyncio.runners # Added in Python 3.7
1212asyncio.staggered # Added in Python 3.8
1313asyncio.threads # Added in Python 3.9
1414asyncio.trsock # Added in Python 3.8
15+ asyncio.mixins # Added in Python 3.10
1516builtins.str.maketrans
1617cmath.log
1718collections.AsyncGenerator.ag_await
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ asyncio.futures.Future._callbacks # Usually initialized from c object
1212asyncio.staggered # Added in Python 3.8
1313asyncio.threads # Added in Python 3.9
1414asyncio.trsock # Added in Python 3.8
15+ asyncio.mixins # Added in Python 3.10
1516builtins.dict.get
1617builtins.str.maketrans
1718cmath.log
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ asyncio.Future._callbacks # Usually initialized from c object
1717asyncio.futures.Future.__init__ # Usually initialized from c object
1818asyncio.futures.Future._callbacks # Usually initialized from c object
1919asyncio.threads # Added in Python 3.9
20+ asyncio.mixins # Added in Python 3.10
2021builtins.dict.get
2122collections.AsyncGenerator.ag_await
2223collections.AsyncGenerator.ag_code
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ asyncio.Future.__init__ # Usually initialized from c object
1919asyncio.Future._callbacks # Usually initialized from c object
2020asyncio.futures.Future.__init__ # Usually initialized from c object
2121asyncio.futures.Future._callbacks # Usually initialized from c object
22+ asyncio.mixins # Added in Python 3.10
2223builtins.dict.get
2324collections.AsyncGenerator.ag_await
2425collections.AsyncGenerator.ag_code
You can’t perform that action at this time.
0 commit comments