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 ethan.furman, sobolevn
Date 2022-01-10.10:03:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641809022.94.0.176766366407.issue46327@roundup.psfhosted.org>
In-reply-to
Content
Here's the problem: https://github.com/python/cpython/blob/main/Lib/test/test_enum.py#L4515-L4531

Why it is a problem?
1. First test is marked as `@unittest.skipUnless(python_version == (3, 8)`. Which means it is only executed on `3.8`. I think it should be removed from more recent branches
2. Second test is marked as `@unittest.skipUnless(python_version >= (3, 9)`. Which means that it will be executed on three currently supported branches. I think we can remove this decorator

I will send a PR today.
History
Date User Action Args
2022-01-10 10:03:43sobolevnsetrecipients: + sobolevn, ethan.furman
2022-01-10 10:03:42sobolevnsetmessageid: <1641809022.94.0.176766366407.issue46327@roundup.psfhosted.org>
2022-01-10 10:03:42sobolevnlinkissue46327 messages
2022-01-10 10:03:42sobolevncreate