This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients 97littleleaf11, AlexWaygood, JelleZijlstra, gvanrossum, kj, sobolevn, xtreak
Date 2022-02-19.05:25:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645248314.03.0.997622750453.issue46066@roundup.psfhosted.org>
In-reply-to
Content
This change has introduced deprecation warning in tests

PYTHONWARNINGS=always ./python -Wall -X dev -m test.test_typing     
........................................................................................................................................................................................................................s................................................................................................................................................................................................./home/karthikeyan/stuff/python/cpython/Lib/test/test_typing.py:4589: DeprecationWarning: The kwargs-based syntax for TypedDict definitions is deprecated in Python 3.11, will be removed in Python 3.13, and may not be understood by third-party type checkers.
  TypedDict('Emp', _fields={'name': str, 'id': int})
./home/karthikeyan/stuff/python/cpython/Lib/test/test_typing.py:4602: DeprecationWarning: The kwargs-based syntax for TypedDict definitions is deprecated in Python 3.11, will be removed in Python 3.13, and may not be understood by third-party type checkers.
  TypedDict('Hi', x=1)
........................................
----------------------------------------------------------------------
Ran 451 tests in 0.105s

OK (skipped=1)
History
Date User Action Args
2022-02-19 05:25:14xtreaksetrecipients: + xtreak, gvanrossum, JelleZijlstra, sobolevn, kj, AlexWaygood, 97littleleaf11
2022-02-19 05:25:14xtreaksetmessageid: <1645248314.03.0.997622750453.issue46066@roundup.psfhosted.org>
2022-02-19 05:25:14xtreaklinkissue46066 messages
2022-02-19 05:25:13xtreakcreate