- 22 May, 2015 5 commits
-
-
Tres Seaver authored
-
Tres Seaver authored
-
Tres Seaver authored
-
Tres Seaver authored
-
Tres Seaver authored
log ConflictError details, fixes #29
-
- 21 May, 2015 8 commits
-
-
Tres Seaver authored
Update issue #22
-
Jason Madden authored
Incorporate feedback and make the tests run under Python3. Notably, the Grand Exception Unification in Python 3.3 means that IOError is a synonym for OSError in those versions, but not before; deal with this by catching both types and throwing OSError in the doctests (because that's how it prints). Fix #21. Fix #22.
-
Adam Groszer authored
Fix #21, FileStorage: when disk space runs out while packing, do not leave the ``.pack`` file around
-
Adam Groszer authored
-
Adam Groszer authored
fixed ResolveableWhenStateDoesNotChange, changed show_tryToResolveConflict_log_output to check both cases
-
Adam Groszer authored
-
Adam Groszer authored
-
Adam Groszer authored
-
- 20 May, 2015 7 commits
-
-
Tres Seaver authored
Support PyPy.
-
Jason Madden authored
This is a performance optimization for PyPy (profiling shows many recursive calls to Persistent.__getattribute__, and recursive calls seem to trouble the PyPy JIT; this eliminates many of them when loading objects): "Transaction", AFTER BEFORE "Add 3000 Objects", 20205 18505 "Update 3000 Objects", 24191 18807 "Read 3000 Warm Objects", 28920 26671 "Read 3000 Cold Objects", 28745 27487 "Read 3000 Hot Objects", 29563 27487 "Read 3000 Steamin' Objects", 1033758 916587
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
Go back to assuming that cache.lru_items and cache.cache_data are in sync. Otherwise we have corruption in the cache and, under PyPy, a CFFI-level memory leak; we want tests to fail in that case.
-
Jason Madden authored
Fix test_new_ghost_w_persistent_class under PyPy3, failing due to a bytes/unicode issue. It seems the cPickleCache under Python 3 accepts unicode objects as the oid, but the pure-Python version doesn't.
-
Jason Madden authored
-
- 19 May, 2015 2 commits
-
-
Jason Madden authored
-
Jason Madden authored
-
- 01 May, 2015 1 commit
-
-
Jason Madden authored
-
- 24 Apr, 2015 1 commit
-
-
- 14 Apr, 2015 2 commits
-
-
Jason Madden authored
-
Jason Madden authored
-
- 13 Apr, 2015 1 commit
-
-
Jason Madden authored
-
- 11 Apr, 2015 1 commit
-
-
Jason Madden authored
Rollback some changes now that Python persistent handles registering objects during __setstate__ the same way as C persistent.
-
- 10 Apr, 2015 5 commits
-
-
Jason Madden authored
Fix unpickling POSError subclasses under PyPy. This fixes a bunch of '<Unprintable POSKeyError>' tests in ZEO.
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
The Python persistent implementation has caught up enough with the C version that we don't need to list extra special names that shouldn't re-wake Broken objects.
-
- 09 Apr, 2015 2 commits
-
-
Jason Madden authored
-
Jason Madden authored
Fix the functional blob tests under PyPy/pure-python by avoiding spuriously registering Blob objects as modified each time they are loaded from cache. This is something of a difference in behaviour between the C and Python implementations, but it's also arguably a bug in the Blob class.
-
- 08 Apr, 2015 2 commits
-
-
Jason Madden authored
-
Jason Madden authored
The changes were mostly in the Persistent module. Here, the changes were minimal: - Introduce zodbpickle for PyPy and Python 2.7 to fix noload. - Centralize the construction of Picklers/Unpicklers to account for the differences between Python2/3/zodbpickle. - A few extra gc.collect() calls. - Some minor printing differences in the doctests due to the Python implementation of BTrees.
-
- 07 Apr, 2015 3 commits
-
-
Jason Madden authored
Checkpoint on ZODB under PyPy: 25 failures, 25 errors (needs my persistent fork). Many of them are printing differences, some have to do with the Python persistent implementation, especially PickleCache
-
Jason Madden authored
Use zodbpickle under pypy and 2.7 for a working noload. Also add pypy to tox so I can start testing it.
-
Tres Seaver authored
Fix manifest and setup
-