summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-29 04:15:12 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-29 04:15:12 (GMT)
commit2691ee61833f7f460b5f67795b232a9b6f4518d8 (patch)
tree2cd01a7a0eb69c71be77a7506e457fd7ddf9b729 /Misc
parent880fee60caf0da8da57713b9dcdf3eee9767aac7 (diff)
downloadcpython-2691ee61833f7f460b5f67795b232a9b6f4518d8.zip
cpython-2691ee61833f7f460b5f67795b232a9b6f4518d8.tar.gz
cpython-2691ee61833f7f460b5f67795b232a9b6f4518d8.tar.bz2
whatsnew: abc.ABC. Also add issue number to news entry and reword.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8ef6063..a203bc3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2671,8 +2671,9 @@ Library
Content-Length and the incoming stream is finished. Patch by Eran
Rundstein.
-- Add abc.ABC class to use inheritance rather than a direct invocation of
- ABCMeta metaclass. Patch by Bruno Dupuis.
+- Issue #16049: Add abc.ABC class to enable the use of inheritance to create
+ ABCs, rather than the more cumbersome metaclass=ABCMeta. Patch by Bruno
+ Dupuis.
- Expose the TCP_FASTOPEN and MSG_FASTOPEN flags in socket when they're
available.