summaryrefslogtreecommitdiffstats
path: root/Misc
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
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')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 72b18c9..26e5f12 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -343,6 +343,7 @@ Drew Jenkins
Flemming Kjær Jensen
Jiba
Orjan Johansen
+Fredrik Johansson
Gregory K. Johnson
Simon Johnston
Evan Jones
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.