An error occurred fetching the project authors.
- 09 Jun, 2002 2 commits
-
-
http://collector.zope.org/Zope/419Tim Peters authored
"BTreeItems slice contains 1 too many elements" This also fixes many related glitches, such as that giving an out-of-bound slice index raised IndexError instead of clipping. BTreeItems_slice(): Emulate Python slicing semantics in all cases. testBTrees.py: new testSlicing() tests in MappingBase and NormalSetTests to ensure that slicing of .keys()/.items()/.values() works exactly the same way as slicing of Python lists, in all one-sided, two-sided and whole-structure ([:]) cases, with both negative and positive slice indices, and mixtures of + and -, and whether in bounds or out of bounds.
-
Tim Peters authored
-
- 31 May, 2002 1 commit
-
-
Toby Dickenson authored
long overdue merge of toby-cmp-error-branch. btrees no longer ignore exceptions raised by the key comparison function
-
- 30 May, 2002 2 commits
-
-
Jim Fulton authored
initial fix causes core dumps. We'll reenable this test when the bug gets fixed (again).
-
Jeremy Hylton authored
-
- 28 May, 2002 1 commit
-
-
Jim Fulton authored
keys at the beginning of the BTree were deleted.
-
- 11 Feb, 2002 1 commit
-
-
Guido van Rossum authored
-
- 25 Jan, 2002 1 commit
-
-
Guido van Rossum authored
the code try: root = self._getRoot() ... except: self._closeDB(root) self._delDB() raise which fails with an UnboundLocalError if the first line in the try clause fails. Fixed this by setting 'root = None' before each such try clause, and adding a None check to _closeDB(). Also removed a useless 'root = None' from the body of _closeDB(). Barry: I saw this in the saz 1.0c1 release. Is it worth backporting? Probably not given that we're not going to do a merge pre-1.0.
-
- 21 Dec, 2001 1 commit
-
-
Andreas Jung authored
- replaced assert statements by calls to self.assertEqual() and self.assert_()
-
- 20 Dec, 2001 1 commit
-
-
Andreas Jung authored
-
- 28 Nov, 2001 1 commit
-
-
matt@zope.com authored
-
- 19 Oct, 2001 1 commit
-
-
Andreas Jung authored
-
- 20 Sep, 2001 1 commit
-
-
Jeremy Hylton authored
Based on conversation with Evan yesterday, I think this is safe.
-
- 04 Sep, 2001 1 commit
-
-
Andreas Jung authored
implementation
-
- 14 Aug, 2001 1 commit
-
-
Jeffrey Shell authored
-
- 07 Aug, 2001 1 commit
-
-
Jeremy Hylton authored
The testrunner reports all tests passed after these changes. Remove unnecessary path munging and attempts to import ZODB. Update uses of whrandom to use random.
-
- 06 Aug, 2001 2 commits
-
-
Jeremy Hylton authored
VerboseTextTestRunner() => TestTestRunner(verbosity=2)
-
Jeremy Hylton authored
-
- 03 Aug, 2001 1 commit
-
-
Jeffrey Shell authored
glob() and os.remove().
-
- 15 Mar, 2001 1 commit
-
-
Jim Fulton authored
-
- 17 Feb, 2001 1 commit
-
-
Chris McDonough authored
-
- 16 Feb, 2001 3 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
Rewrote suite building to use a test_suite function as required by Brian's test runner. Added a debug function and a new __main__ handler that can run it.
-
Chris McDonough authored
-
- 15 Feb, 2001 1 commit
-
-
Jim Fulton authored
comparison yet. Fixed typo in length test.
-
- 08 Feb, 2001 1 commit
-
-
Chris McDonough authored
-
- 07 Feb, 2001 1 commit
-
-
Chris McDonough authored
-
- 06 Feb, 2001 2 commits
-
-
Chris McDonough authored
-
Chris McDonough authored
-
- 05 Feb, 2001 1 commit
-
-
Jim Fulton authored
-
- 04 Feb, 2001 1 commit
-
-
Jim Fulton authored
getting key max and min values. Added (back) PER_USE macro to make persistence handling sane.
-
- 01 Feb, 2001 1 commit
-
-
Jim Fulton authored
check the length after convering to a list, because btree items have to lie about their length.
-
- 23 Jan, 2001 1 commit
-
-
Chris McDonough authored
-