-
-
Notifications
You must be signed in to change notification settings - Fork 30.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename typing._collect_parameters #118900
Conversation
function. Unfortunately, released versions of typing_extensions monkeypatch this function without the extra parameter, which makes it so things break badly if current main is used with typing_extensions. ``` % ~/py/cpython/python.exe test_typing_extensions.py Traceback (most recent call last): File "/Users/jelle/py/typing_extensions/src/test_typing_extensions.py", line 42, in <module> from _typed_dict_test_helper import Foo, FooGeneric, VeryAnnotated File "/Users/jelle/py/typing_extensions/src/_typed_dict_test_helper.py", line 17, in <module> class FooGeneric(TypedDict, Generic[T]): ~~~~~~~^^^ File "/Users/jelle/py/cpython/Lib/typing.py", line 431, in inner return func(*args, **kwds) File "/Users/jelle/py/cpython/Lib/typing.py", line 1243, in _generic_class_getitem return _GenericAlias(cls, args) File "/Users/jelle/py/cpython/Lib/typing.py", line 1420, in __init__ self.__parameters__ = _collect_parameters( ~~~~~~~~~~~~~~~~~~~^ args, ^^^^^ enforce_default_ordering=enforce_default_ordering, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ) ^ TypeError: _collect_parameters() got an unexpected keyword argument 'enforce_default_ordering' ``` Fortunately, the monkeypatching is not needed on Python 3.13, because CPython now implements PEP 696. By renaming the function, we prevent the monkeypatch from breaking typing.py internals.
There are some uses of this function in the wild, which this change would break... https://github.com/wyfo/apischema/blob/d48cc010c417e9c49db25b7a8683621b3c305b44/apischema/typing.py#L59-L62 And we could also fix the test failure over at --- a/src/typing_extensions.py
+++ b/src/typing_extensions.py
@@ -2836,7 +2836,8 @@ else:
return tuple(parameters)
- typing._collect_parameters = _collect_parameters
+ if not _PEP_696_IMPLEMENTED:
+ typing._collect_parameters = _collect_parameters It's true that making a change in CPython rather than |
I think that error shows up only if you use
I think we could address this by keeping an alias |
Okay, sounds reasonable.
Or we could do this in the --- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -3770,6 +3770,9 @@ def __getattr__(attr):
elif attr in {"ContextManager", "AsyncContextManager"}:
import contextlib
obj = _alias(getattr(contextlib, f"Abstract{attr}"), 2, name=attr, defaults=(bool | None,))
+ elif attr == "_collect_parameters":
+ do_the_deprecation_warning()
+ return _collect_type_parameters
else:
raise AttributeError(f"module {__name__!r} has no attribute {attr!r}")
globals()[attr] = obj |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Thanks @JelleZijlstra for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13. |
Unfortunately, released versions of typing_extensions monkeypatch this function without the extra parameter, which makes it so things break badly if current main is used with typing_extensions. Fortunately, the monkeypatching is not needed on Python 3.13, because CPython now implements PEP 696. By renaming the function, we prevent the monkeypatch from breaking typing.py internals. We keep the old name (raising a DeprecationWarning) to help other external users who call it. (cherry picked from commit ec9d12b) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
GH-118917 is a backport of this pull request to the 3.13 branch. |
|
Unfortunately, released versions of typing_extensions monkeypatch this function without the extra parameter, which makes it so things break badly if current main is used with typing_extensions. Fortunately, the monkeypatching is not needed on Python 3.13, because CPython now implements PEP 696. By renaming the function, we prevent the monkeypatch from breaking typing.py internals. We keep the old name (raising a DeprecationWarning) to help other external users who call it.
function. Unfortunately, released versions of typing_extensions
monkeypatch this function without the extra parameter, which makes
it so things break badly if current main is used with typing_extensions.
Fortunately, the monkeypatching is not needed on Python 3.13, because CPython
now implements PEP 696. By renaming the function, we prevent the monkeypatch
from breaking typing.py internals.