summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-05-01 13:51:09 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-05-01 13:51:09 (GMT)
commit7295c6a871f9cc42a4209a8eebe2e0974194a2a3 (patch)
tree7152b99672eaa7ab1182611207d5931dd807ceab /Misc
parent42d7081806444582ee20f6cfdf7e8c88b165b0b0 (diff)
downloadcpython-7295c6a871f9cc42a4209a8eebe2e0974194a2a3.zip
cpython-7295c6a871f9cc42a4209a8eebe2e0974194a2a3.tar.gz
cpython-7295c6a871f9cc42a4209a8eebe2e0974194a2a3.tar.bz2
fix calling the classmethod descriptor directly (closes #14699)
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 c9752f6..c24caac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14699: Fix calling the classmethod descriptor directly.
+
- Issue #14433: Prevent msvcrt crash in interactive prompt when stdin
is closed.