summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2020-06-17 17:09:10 (GMT)
committerGitHub <noreply@github.com>2020-06-17 17:09:10 (GMT)
commitbb6ec14479f18c32e71e43f2785f177aa17aabbd (patch)
tree7a4a77113064832ed797636e3d1cabf588c0f2bf /Misc
parent8362893e3fe083df2ec8bb94c28b1a78383eadbf (diff)
downloadcpython-bb6ec14479f18c32e71e43f2785f177aa17aabbd.zip
cpython-bb6ec14479f18c32e71e43f2785f177aa17aabbd.tar.gz
cpython-bb6ec14479f18c32e71e43f2785f177aa17aabbd.tar.bz2
bpo-41009: fix requires_OS_version() class decorator (GH-20942)
Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2020-06-17-17-27-07.bpo-41009.Rvn6OQ.rst2
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.