diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-09-01 22:27:57 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-09-01 22:27:57 (GMT) |
commit | 6fcf9b50bc13d757096822ba996fa3c122b70c6b (patch) | |
tree | 473ddc3cce22f1c84d6ca1d739291a46f3a6544a /Misc | |
parent | 8514b85edc420aa1f91c443e7e11629855a170d3 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |