summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2008-12-17 16:14:37 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2008-12-17 16:14:37 (GMT)
commit1a707981c8b57e5ca7c5b8aa38d3e5e6ca235dbf (patch)
treebd6b0df9770926a85cfe111b66c2755bb6b6db5c /Misc/NEWS
parentd0c3515bc5b31a19d00bfc685d7657ad7d79fa94 (diff)
downloadcpython-1a707981c8b57e5ca7c5b8aa38d3e5e6ca235dbf.zip
cpython-1a707981c8b57e5ca7c5b8aa38d3e5e6ca235dbf.tar.gz
cpython-1a707981c8b57e5ca7c5b8aa38d3e5e6ca235dbf.tar.bz2
Issue #3439: add bit_length method to int and long.
Thanks Fredrik Johansson and Victor Stinner for code, Raymond Hettinger for review.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9e499ae..09c3ceb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #3439: Add a bit_length method to int and long.
+
- Issue #2183: Simplify and optimize bytecode for list comprehensions.
Original patch by Neal Norwitz.