summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-01-05 10:13:35 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-01-05 10:13:35 (GMT)
commit0c4102760c440af3e7b575b0fd27fe25549641a2 (patch)
treed7cb942e0f91852f6a2beb8a7bf17c69bbc75e23 /Misc
parent23a0f4ed21205a0b585ee66bd8e1405b38680319 (diff)
downloadcpython-0c4102760c440af3e7b575b0fd27fe25549641a2.zip
cpython-0c4102760c440af3e7b575b0fd27fe25549641a2.tar.gz
cpython-0c4102760c440af3e7b575b0fd27fe25549641a2.tar.bz2
SF Patch #864863: Bisect C implementation
(Contributed by Dmitry Vasiliev.)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 4ddd6a3..eea665a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -565,6 +565,7 @@ Bill Tutt
Doobee R. Tzeck
Lionel Ulmer
Hector Urtubia
+Dmitry Vasiliev
Frank Vercruesse
Jaap Vermeulen
Al Vezza
diff --git a/Misc/NEWS b/Misc/NEWS
index 18f1348..63b3321 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -210,7 +210,8 @@ Library
- Plugged a minor hole in tempfile.mktemp() due to the use of
os.path.exists(), switched to using os.lstat() directly if possible.
-- heapq.py has been converted to C for improved performance
+- bisect.py and heapq.py now have underlying C implementations
+ for better performance
- traceback.format_exc has been added (similar to print_exc but it returns
a string).