Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions stdlib/@tests/stubtest_allowlists/py313.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ importlib.abc.FileLoader.load_module
# method so code typing the loop as `AbstractEventLoop` can still pass `cleanup_socket=...`. See #15742.
asyncio.events.AbstractEventLoop.create_unix_server

_colorize.attr # Loop variable that leaks into the module namespace
_pyrepl\..+ # The internal implementation of the REPL on py313+; not for public consumption
codecs.backslashreplace_errors # Runtime incorrectly has `self`
codecs.ignore_errors # Runtime incorrectly has `self`
Expand Down
3 changes: 3 additions & 0 deletions stdlib/@tests/stubtest_allowlists/py314.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ importlib.abc.FileLoader.load_module
# Allowlist entries that cannot or should not be fixed; >= 3.14
# =============================================================

_colorize.code # Loop variable that leaks into the module namespace

# Undocumented private attributes
.*\.ForwardRef\.__arg__
.*\.ForwardRef\.__ast_node__
Expand Down Expand Up @@ -134,6 +136,7 @@ multiprocessing.managers._BaseDictProxy.__reversed__
# method so code typing the loop as `AbstractEventLoop` can still pass `cleanup_socket=...`. See #15742.
asyncio.events.AbstractEventLoop.create_unix_server

_colorize.attr # Loop variable that leaks into the module namespace
_pyrepl\..+ # The internal implementation of the REPL on py313+; not for public consumption
codecs.backslashreplace_errors # Runtime incorrectly has `self`
codecs.ignore_errors # Runtime incorrectly has `self`
Expand Down
6 changes: 6 additions & 0 deletions stdlib/@tests/stubtest_allowlists/py315.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ dataclasses.field
# Allowlist entries that cannot or should not be fixed; >= 3.15
# =============================================================

# Declared with the `type` statement, so stubtest compares the stub against the alias value
_colorize.BackgroundStyle

# runtime default is a list object used as a sentinel
base64.b64decode
urllib.parse.urlunparse
Expand Down Expand Up @@ -43,6 +46,8 @@ tkinter.Place.place_content
# Allowlist entries that cannot or should not be fixed; >= 3.14
# =============================================================

_colorize.code # Loop variable that leaks into the module namespace

# Undocumented private attributes
.*\.ForwardRef\.__arg__
.*\.ForwardRef\.__ast_node__
Expand Down Expand Up @@ -108,6 +113,7 @@ types.UnionType.__qualname__
# method so code typing the loop as `AbstractEventLoop` can still pass `cleanup_socket=...`. See #15742.
asyncio.events.AbstractEventLoop.create_unix_server

_colorize.attr # Loop variable that leaks into the module namespace
_pyrepl\..+ # The internal implementation of the REPL on py313+; not for public consumption
codecs.backslashreplace_errors # Runtime incorrectly has `self`
codecs.ignore_errors # Runtime incorrectly has `self`
Expand Down
1 change: 1 addition & 0 deletions stdlib/VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ _blake2: 3.6-
_bz2: 3.3-
_codecs: 3.0-
_collections_abc: 3.3-
_colorize: 3.13-
_compat_pickle: 3.1-
_compression: 3.5-3.13
_contextvars: 3.7-
Expand Down
Loading