-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
[3.11] gh-115570: Fix DeprecationWarnings in test_typing #115571
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
Conversation
Co-authored-by: Alex Waygood <[email protected]>
AlexWaygood
left a comment
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 <[email protected]>
|
Should this be forward-ported to Python 3.12? Python 3.12.2 (v3.12.2:6abddd9f6a, Feb 6 2024, 17:02:06) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import typing
>>> typing.io
<class 'typing.io'>
>>> typing.io.__doc__
<stdin>:1: DeprecationWarning: typing.io is deprecated, import directly from typing instead. typing.io will be removed in Python 3.12.
'Wrapper namespace for IO generic classes.'(The deprecation warning on Python 3.12 should also probably be updated: it obviously wasn't removed in Python 3.12. But it has been in Python 3.13.) |
|
Ah yes, I forgot we didn't remove this in 3.12. |
…n#115571) Co-authored-by: Alex Waygood <[email protected]>
|
GH-115574 is a backport of this pull request to the 3.12 branch. |
…n#115571) Co-authored-by: Alex Waygood <[email protected]>
…115574) Co-authored-by: Alex Waygood <[email protected]>
Uh oh!
There was an error while loading. Please reload this page.