File tree Expand file tree Collapse file tree 7 files changed +10
-4
lines changed
tests/stubtest_allowlists Expand file tree Collapse file tree 7 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -399,7 +399,7 @@ class BaseEventLoop(AbstractEventLoop):
399
399
stdout : int | IO [Any ] | None = - 1 ,
400
400
stderr : int | IO [Any ] | None = - 1 ,
401
401
universal_newlines : Literal [False ] = False ,
402
- shell : Literal [True ] = ... ,
402
+ shell : Literal [False ] = False ,
403
403
bufsize : Literal [0 ] = 0 ,
404
404
encoding : None = None ,
405
405
errors : None = None ,
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ class AbstractEventLoop:
542
542
stdout : int | IO [Any ] | None = - 1 ,
543
543
stderr : int | IO [Any ] | None = - 1 ,
544
544
universal_newlines : Literal [False ] = ...,
545
- shell : Literal [True ] = ...,
545
+ shell : Literal [False ] = ...,
546
546
bufsize : Literal [0 ] = ...,
547
547
encoding : None = ...,
548
548
errors : None = ...,
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ _collections_abc.ItemsView.__reversed__
7
7
_collections_abc.KeysView.__reversed__
8
8
_collections_abc.ValuesView.__reversed__
9
9
_weakref.ProxyType.__reversed__ # Doesn't really exist
10
+ asyncio.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
11
+ asyncio.base_events.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
10
12
asyncio.Future.__init__ # Usually initialized from c object
11
13
asyncio.futures.Future.__init__ # Usually initialized from c object
12
14
builtins.float.__setformat__ # Internal method for CPython test suite
Original file line number Diff line number Diff line change @@ -101,6 +101,8 @@ types.GenericAlias.__getattr__
101
101
types.GenericAlias.__mro_entries__
102
102
weakref.ProxyType.__reversed__ # Doesn't really exist
103
103
inspect._ParameterKind.description # Still exists, but stubtest can't see it
104
+ asyncio.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
105
+ asyncio.base_events.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
104
106
105
107
# C signature is broader than what is actually accepted
106
108
ast.Bytes.__new__
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ ast.Ellipsis.__new__
11
11
ast.NameConstant.__new__
12
12
ast.Num.__new__
13
13
ast.Str.__new__
14
+ asyncio.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
15
+ asyncio.base_events.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
14
16
asyncio.Future.__init__ # Usually initialized from c object
15
17
asyncio.futures.Future.__init__ # Usually initialized from c object
16
18
asyncio.locks._ContextManagerMixin.__enter__ # Always raises; deliberately omitted from the stub
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ ast.Index.__new__
13
13
ast.NameConstant.__new__
14
14
ast.Num.__new__
15
15
ast.Str.__new__
16
+ asyncio.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
17
+ asyncio.base_events.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
16
18
asyncio.Future.__init__ # Usually initialized from c object
17
19
asyncio.futures.Future.__init__ # Usually initialized from c object
18
20
builtins.float.__setformat__ # Internal method for CPython test suite
Original file line number Diff line number Diff line change @@ -34,12 +34,10 @@ argparse.Namespace.__getattr__ # The whole point of this class is its attribute
34
34
asynchat.async_chat.encoding # Removal planned for 3.12, can add if someone needs this
35
35
asynchat.async_chat.use_encoding # Removal planned for 3.12, can add if someone needs this
36
36
asynchat.find_prefix_at_end # Removal planned for 3.12, can add if someone needs this
37
- asyncio.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
38
37
# Condition functions are exported in __init__
39
38
asyncio.Condition.acquire
40
39
asyncio.Condition.locked
41
40
asyncio.Condition.release
42
- asyncio.base_events.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
43
41
# Condition functions are exported in __init__
44
42
asyncio.locks.Condition.acquire
45
43
asyncio.locks.Condition.locked
You can’t perform that action at this time.
0 commit comments