File tree 6 files changed +3
-5
lines changed
tests/stubtest_allowlists
6 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ typing.IO.truncate
23
23
typing.IO.write
24
24
typing.IO.writelines
25
25
26
+ _collections_abc.AsyncGenerator.athrow # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
26
27
_weakref.ProxyType.__reversed__ # Doesn't really exist
27
28
ast.Bytes.__new__
28
29
ast.Ellipsis.__new__
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ builtins.float.__setformat__ # Internal method for CPython test suite
12
12
builtins.str.maketrans
13
13
cmath.log
14
14
collections.AsyncGenerator.asend # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
15
- collections.AsyncGenerator.athrow # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
16
15
collections.AsyncGenerator.__anext__ # async at runtime, deliberately not in the stub, see #7475
17
16
collections.AsyncGenerator.aclose # async at runtime, deliberately not in the stub, see #7475
18
17
collections.AsyncIterator.__anext__ # async at runtime, deliberately not in the stub, see #7475
@@ -94,6 +93,8 @@ tkinter.filedialog.TkVersion
94
93
tkinter.filedialog.wantobjects
95
94
tkinter.simpledialog.wantobjects
96
95
tkinter.tix.wantobjects
96
+ typing.AsyncGenerator.aclose # async at runtime, deliberately not in the stub, see #7475
97
+ typing.AsyncGenerator.asend # async at runtime, deliberately not in the stub, see #7475
97
98
98
99
builtins.memoryview.__iter__ # C type that implements __getitem__
99
100
builtins.memoryview.cast # inspect.signature is incorrect about shape being kw-only
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ builtins.float.__set_format__ # Internal method for CPython test suite
16
16
builtins.str.maketrans
17
17
cmath.log
18
18
collections.AsyncGenerator.asend # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
19
- collections.AsyncGenerator.athrow # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
20
19
collections.AsyncGenerator.__anext__ # async at runtime, deliberately not in the stub, see #7475
21
20
collections.AsyncGenerator.aclose # async at runtime, deliberately not in the stub, see #7475
22
21
collections.AsyncIterator.__anext__ # async at runtime, deliberately not in the stub, see #7475
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ asyncio.locks._ContextManagerMixin.__exit__ # Always raises; deliberately omitt
20
20
builtins.dict.get
21
21
builtins.float.__set_format__ # Internal method for CPython test suite
22
22
collections.AsyncGenerator.asend # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
23
- collections.AsyncGenerator.athrow # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
24
23
collections.AsyncGenerator.__anext__ # async at runtime, deliberately not in the stub, see #7475
25
24
collections.AsyncGenerator.aclose # async at runtime, deliberately not in the stub, see #7475
26
25
collections.AsyncIterator.__anext__ # async at runtime, deliberately not in the stub, see #7475
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ asyncio.futures.Future._callbacks # Usually initialized from c object
22
22
builtins.dict.get
23
23
builtins.float.__set_format__ # Internal method for CPython test suite
24
24
collections.AsyncGenerator.asend # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
25
- collections.AsyncGenerator.athrow # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
26
25
collections.AsyncGenerator.__anext__ # async at runtime, deliberately not in the stub, see #7475
27
26
collections.AsyncGenerator.aclose # async at runtime, deliberately not in the stub, see #7475
28
27
collections.AsyncIterator.__anext__ # async at runtime, deliberately not in the stub, see #7475
Original file line number Diff line number Diff line change @@ -247,7 +247,6 @@ xml.parsers.expat.expat_CAPI
247
247
# Allowlist entries that cannot or should not be fixed
248
248
# ==========
249
249
_collections_abc.AsyncGenerator.asend # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
250
- _collections_abc.AsyncGenerator.athrow # async at runtime, deliberately not in the stub, see #7475. Pos-only differences also.
251
250
_collections_abc.AsyncGenerator.__anext__ # async at runtime, deliberately not in the stub, see #7475
252
251
_collections_abc.AsyncGenerator.aclose # async at runtime, deliberately not in the stub, see #7475
253
252
_collections_abc.AsyncIterator.__anext__ # async at runtime, deliberately not in the stub, see #7475
You can’t perform that action at this time.
0 commit comments