summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-09-01 22:27:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-09-01 22:27:57 (GMT)
commit6fcf9b50bc13d757096822ba996fa3c122b70c6b (patch)
tree473ddc3cce22f1c84d6ca1d739291a46f3a6544a /Misc
parent8514b85edc420aa1f91c443e7e11629855a170d3 (diff)
downloadcpython-6fcf9b50bc13d757096822ba996fa3c122b70c6b.zip
cpython-6fcf9b50bc13d757096822ba996fa3c122b70c6b.tar.gz
cpython-6fcf9b50bc13d757096822ba996fa3c122b70c6b.tar.bz2
remove the check that classmethod's argument is a callable
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 3b0bd5c..dfb2e22 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- classmethod no longer checks if its argument is callable.
+
- Issue #6750: A text file opened with io.open() could duplicate its output
when writing from multiple threads at the same time.