summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2021-08-06 19:33:30 (GMT)
committerGitHub <noreply@github.com>2021-08-06 19:33:30 (GMT)
commit1f7d64608b5c7f4c3d96b01b33e18ebf9dec8490 (patch)
tree2b9d1df37aa23a03ac0a1f17dc3abbbfeeeab43c /Misc
parent7d747f26e6cac9f6891d475f3443441ce947697b (diff)
downloadcpython-1f7d64608b5c7f4c3d96b01b33e18ebf9dec8490.zip
cpython-1f7d64608b5c7f4c3d96b01b33e18ebf9dec8490.tar.gz
cpython-1f7d64608b5c7f4c3d96b01b33e18ebf9dec8490.tar.bz2
bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-08-06-09-43-50.bpo-44605.q4YSBZ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-08-06-09-43-50.bpo-44605.q4YSBZ.rst b/Misc/NEWS.d/next/Library/2021-08-06-09-43-50.bpo-44605.q4YSBZ.rst
new file mode 100644
index 0000000..9378392
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-08-06-09-43-50.bpo-44605.q4YSBZ.rst
@@ -0,0 +1 @@
+The @functools.total_ordering() decorator now works with metaclasses.