summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-08-17 00:52:52 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-08-17 00:52:52 (GMT)
commit45c257f193ddb8dfd54a0edb7253ee9254329ab7 (patch)
tree18b04c290ba0aadda9392a63bdebb2e1f64b9718 /Misc
parent36e791179c3bb49d45a17c27fbc39ec9b2a8694f (diff)
downloadcpython-45c257f193ddb8dfd54a0edb7253ee9254329ab7.zip
cpython-45c257f193ddb8dfd54a0edb7253ee9254329ab7.tar.gz
cpython-45c257f193ddb8dfd54a0edb7253ee9254329ab7.tar.bz2
add support for abstract class and static methods #5867
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 904d0c2..53643de 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -90,6 +90,8 @@ Extensions
Library
-------
+- Issue #5867: Add abc.abstractclassmethod and abc.abstractstaticmethod.
+
- Issue #9605: posix.getlogin() decodes the username with file filesystem
encoding and surrogateescape error handler. Patch written by David Watson.