File tree 3 files changed +7
-0
lines changed
tests/stubtest_allowlists 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ from typing_extensions import Literal
14
14
if sys .version_info >= (3 , 7 ):
15
15
from contextvars import Context
16
16
17
+ if sys .version_info >= (3 , 9 ):
18
+ __all__ = ("BaseEventLoop" , "Server" )
19
+ elif sys .version_info >= (3 , 7 ):
17
20
__all__ = ("BaseEventLoop" ,)
18
21
else :
19
22
__all__ = ["BaseEventLoop" ]
Original file line number Diff line number Diff line change @@ -33,10 +33,12 @@ ast.Index.__new__
33
33
ast.NameConstant.__new__
34
34
ast.Num.__new__
35
35
ast.Str.__new__
36
+ asyncio.base_events.__all__ # Fixed in 3.10.3
36
37
asyncio.Future.__init__ # Usually initialized from c object
37
38
asyncio.Future._callbacks # Usually initialized from c object
38
39
asyncio.futures.Future.__init__ # Usually initialized from c object
39
40
asyncio.futures.Future._callbacks # Usually initialized from c object
41
+ asyncio.Server # Fixed in 3.10.3
40
42
builtins.dict.get
41
43
builtins.float.__set_format__ # Internal method for CPython test suite
42
44
builtins.property.__set_name__ # Doesn't actually exist
Original file line number Diff line number Diff line change @@ -15,10 +15,12 @@ ast.Index.__new__
15
15
ast.NameConstant.__new__
16
16
ast.Num.__new__
17
17
ast.Str.__new__
18
+ asyncio.base_events.__all__ # Fixed in 3.9.11
18
19
asyncio.Future.__init__ # Usually initialized from c object
19
20
asyncio.Future._callbacks # Usually initialized from c object
20
21
asyncio.futures.Future.__init__ # Usually initialized from c object
21
22
asyncio.futures.Future._callbacks # Usually initialized from c object
23
+ asyncio.Server # Fixed in 3.9.11
22
24
builtins.dict.get
23
25
builtins.float.__set_format__ # Internal method for CPython test suite
24
26
collections.AsyncGenerator.asend # async at runtime, deliberately not in the stub, see #7491. Pos-only differences also.
You can’t perform that action at this time.
0 commit comments