Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spadolini (#10868).
diff --git a/Misc/ACKS b/Misc/ACKS
index c22e360..8066ebc 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -798,6 +798,7 @@
Dirk Soede
Paul Sokolovsky
Cody Somerville
+Edoardo Spadolini
Clay Spence
Per Spilling
Joshua Spoerri
diff --git a/Misc/NEWS b/Misc/NEWS
index 91a727a..6df1ace 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@
Library
-------
+- Issue #10868: Allow usage of the register method of an ABC as a class
+ decorator.
+
- Issue #11224: Fixed a regression in tarfile that affected the file-like
objects returned by TarFile.extractfile() regarding performance, memory
consumption and failures with the stream interface.