diff options
author | Christian Heimes <christian@python.org> | 2020-06-25 12:18:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 12:18:06 (GMT) |
commit | cd6f9110974f733d10d9eef36a9a769a29cd3295 (patch) | |
tree | cab3ae8453fa72b69edea5f1aaa7ca8044eb5206 /Misc/NEWS.d | |
parent | fdf6872f3893647e52f123ba62431aaf9f24ad3a (diff) | |
download | cpython-cd6f9110974f733d10d9eef36a9a769a29cd3295.zip cpython-cd6f9110974f733d10d9eef36a9a769a29cd3295.tar.gz cpython-cd6f9110974f733d10d9eef36a9a769a29cd3295.tar.bz2 |
[3.9] bpo-41009: fix requires_OS_version() class decorator (GH-20942) (GH-20947)
Signed-off-by: Christian Heimes <christian@python.org>
Automerge-Triggered-By: @tiran.
(cherry picked from commit bb6ec14479f18c32e71e43f2785f177aa17aabbd)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst b/Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst new file mode 100644 index 0000000..1208c11 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst @@ -0,0 +1,2 @@ +Fix use of ``support.require_{linux|mac|freebsd}_version()`` decorators as +class decorator. |