[Zodb-checkins] CVS: ZODB3 - NEWS.txt:1.15
Guido van Rossum
guido@python.org
Sat, 28 Sep 2002 23:59:44 -0400
Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv30799
Modified Files:
NEWS.txt
Log Message:
Mention PyChecker. Kill trailing whitespace.
=== ZODB3/NEWS.txt 1.14 => 1.15 ===
--- ZODB3/NEWS.txt:1.14 Tue Sep 24 23:39:40 2002
+++ ZODB3/NEWS.txt Sat Sep 28 23:59:43 2002
@@ -1,7 +1,8 @@
What's new in ZODB3 3.1 beta 2?
===============================
-A few bugs have been fixed.
+A few bugs have been fixed, some that were found with the help of
+Neal Norwitz's PyChecker.
Casey Duncan fixed a few bugs in the recent changes to undoLog().
@@ -78,7 +79,7 @@
- iterator(start=None, stop=None)
The iterator method isn't new, but the optional ``start`` and
- ``stop`` arguments are. These arguments can be used to specify
+ ``stop`` arguments are. These arguments can be used to specify
the range of the iterator -- an inclusive range [start, stop].
FileStorage is now more cautious about creating a new file when it
@@ -160,7 +161,7 @@
was empty even when it wasn't.
- Zope Collector #419: repaired off-by-1 errors and IndexErrors when
- slicing BTree-based data structures. For example,
+ slicing BTree-based data structures. For example,
an_IIBTree.items()[0:0] had length 1 (should be empty) if the tree
wasn't empty.