summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2006-06-05 23:59:37 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2006-06-05 23:59:37 (GMT)
commit3c228b19f049d71c47714e7a2ced5ab4d163be78 (patch)
treea5163475096cb8f13da917c48a413fdb26378e2f /Misc
parent4f7a7220c1f019ced1b82b475115470df6fc3e69 (diff)
downloadcpython-3c228b19f049d71c47714e7a2ced5ab4d163be78.zip
cpython-3c228b19f049d71c47714e7a2ced5ab4d163be78.tar.gz
cpython-3c228b19f049d71c47714e7a2ced5ab4d163be78.tar.bz2
- bsddb: the __len__ method of a DB object has been fixed to return correct
results. It could previously incorrectly return 0 in some cases. Fixes SF bug 1493322 (pybsddb bug 1184012).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cbdcdac..ec7570e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -115,6 +115,10 @@ Extension Modules
- bsddb: fix DBCursor.pget() bug with keyword argument names when no data
parameter is supplied. [SF pybsddb bug #1477863]
+- bsddb: the __len__ method of a DB object has been fixed to return correct
+ results. It could previously incorrectly return 0 in some cases.
+ Fixes SF bug 1493322 (pybsddb bug 1184012).
+
Library
-------