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 sobolevn
Recipients sobolevn
Date 2022-01-11.21:22:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641936164.19.0.344462599094.issue46348@roundup.psfhosted.org>
In-reply-to
Content
There are several very old details in `test_typing`.

Some examples:
1. `@skipUnless(sys.version_info >= (3, 3), 'ChainMap was added in 3.3')` https://github.com/python/cpython/blame/dce642f24418c58e67fa31a686575c980c31dd37/Lib/test/test_typing.py#L3583 Probably we don't care about `3.3` anymore, so this decorator cam be removed
2. Lib/test/mod_generics_cache.py has a specific path for 3.6, which has reached its EOL, so it can also be simplified
3. `ASYNCIO_TESTS` can be written as a regular code now (this is the one I am not 100% sure about, but let's see what the CI will say)

PR is on its way!
History
Date User Action Args
2022-01-11 21:22:44sobolevnsetrecipients: + sobolevn
2022-01-11 21:22:44sobolevnsetmessageid: <1641936164.19.0.344462599094.issue46348@roundup.psfhosted.org>
2022-01-11 21:22:44sobolevnlinkissue46348 messages
2022-01-11 21:22:44sobolevncreate