File tree Expand file tree Collapse file tree
stdlib/@tests/stubtest_allowlists Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,6 +86,11 @@ ntpath.join
8686# Allowlist entries that cannot or should not be fixed; >= 3.13
8787# =============================================================
8888
89+ # `cleanup_socket` was added in 3.13 to the concrete `_UnixSelectorEventLoop.create_unix_server`,
90+ # not to the abstract `AbstractEventLoop.create_unix_server`. The stub adds it on the abstract
91+ # method so code typing the loop as `AbstractEventLoop` can still pass `cleanup_socket=...`. See #15742.
92+ asyncio.events.AbstractEventLoop.create_unix_server
93+
8994_pyrepl\..+ # The internal implementation of the REPL on py313+; not for public consumption
9095codecs.backslashreplace_errors # Runtime incorrectly has `self`
9196codecs.ignore_errors # Runtime incorrectly has `self`
Original file line number Diff line number Diff line change @@ -120,6 +120,11 @@ multiprocessing.managers._BaseDictProxy.__reversed__
120120# Allowlist entries that cannot or should not be fixed; >= 3.13
121121# =============================================================
122122
123+ # `cleanup_socket` was added in 3.13 to the concrete `_UnixSelectorEventLoop.create_unix_server`,
124+ # not to the abstract `AbstractEventLoop.create_unix_server`. The stub adds it on the abstract
125+ # method so code typing the loop as `AbstractEventLoop` can still pass `cleanup_socket=...`. See #15742.
126+ asyncio.events.AbstractEventLoop.create_unix_server
127+
123128_pyrepl\..+ # The internal implementation of the REPL on py313+; not for public consumption
124129codecs.backslashreplace_errors # Runtime incorrectly has `self`
125130codecs.ignore_errors # Runtime incorrectly has `self`
Original file line number Diff line number Diff line change @@ -152,6 +152,11 @@ types.UnionType.__qualname__
152152# Allowlist entries that cannot or should not be fixed; >= 3.13
153153# =============================================================
154154
155+ # `cleanup_socket` was added in 3.13 to the concrete `_UnixSelectorEventLoop.create_unix_server`,
156+ # not to the abstract `AbstractEventLoop.create_unix_server`. The stub adds it on the abstract
157+ # method so code typing the loop as `AbstractEventLoop` can still pass `cleanup_socket=...`. See #15742.
158+ asyncio.events.AbstractEventLoop.create_unix_server
159+
155160_pyrepl\..+ # The internal implementation of the REPL on py313+; not for public consumption
156161codecs.backslashreplace_errors # Runtime incorrectly has `self`
157162codecs.ignore_errors # Runtime incorrectly has `self`
You can’t perform that action at this time.
0 commit comments