Changelog for
python3-persistent-doc-4.2.2-8.1.noarch.rpm :
Sun Dec 11 13:00:00 2016 arunAATTgmx.de
- update to version 4.2.2:
* Drop use of ctypes for determining maximum integer size, to
increase pure-Python compatibility.
* Ensure that __slots__ attributes are cleared when a persistent
object is ghostified. (This excluses classes that override
__new__. See
https://github.com/zopefoundation/persistent/wiki/Notes_on_state_new_and_slots
if you’re curious.)
Sat May 28 14:00:00 2016 arunAATTgmx.de
- update to version 4.2.1:
* Fix the hashcode of C TimeStamp objects on 64-bit Python 3 on
Windows.
Fri May 20 14:00:00 2016 toddrme2178AATTgmail.com
- Split documentation into own subpackage to speed up build.
Sun May 15 14:00:00 2016 arunAATTgmx.de
- specfile:
* update copyright year
- update to version 4.2.0:
* Support subsecond precision for Python implementation of
Timestamp.timeTime.
* When testing PURE_PYTHON environments under tox, avoid poisoning
the user’s global wheel cache.
* Add support for Python 3.5.
* Drop support for Python 2.6 and 3.2.
Sun May 8 14:00:00 2016 arunAATTgmx.de
- specfile:
* updated source url to files.pythonhosted.org
Fri Jun 5 14:00:00 2015 arunAATTgmx.de
- update to version 4.1.1:
* Fix manifest and re-upload to fix stray files included in 4.1.0.
Mon May 25 14:00:00 2015 arunAATTgmx.de
- update to version 4.1.0:
* Made the Python implementation of Persistent and PickleCache
behave more similarly to the C implementation. In particular, the
Python version can now run the complete ZODB and ZEO test suites.
* Fix the hashcode of the Python TimeStamp on 32-bit platforms.
Fri Apr 10 14:00:00 2015 arunAATTgmx.de
- update to version 4.0.9:
* Make the C and Python TimeStamp objects behave more alike. The
Python version now produces the same repr and .raw() output as the
C version, and has the same hashcode. In addition, the Python
version is now supports ordering and equality like the C version.
* Intern keys of object state in __setstate__ to reduce memory usage
when unpickling multiple objects with the same attributes.
* Add support for PyPy3.
* 100% branch coverage.
Fri Jan 2 13:00:00 2015 arunAATTgmx.de
- specfile:
* update copyright year
* README and CHANGES are now .rst
- update to version 4.0.8:
* Added support for Python 3.4.
* In pure-Python Persistent, avoid loading state in _p_activate for non-ghost objects (which could corrupt their state). (PR #9)
* In pure-Python, and don\'t throw POSKeyError if _p_activate is called on an object that has never been committed. (PR #9)
* In pure-Python Persistent, avoid calling a subclass\'s __setattr__ at instance creation time. (PR #8)
* Make it possible to delete _p_jar / _p_oid of a pure-Python
Persistent object which has been removed from the jar\'s cache
(fixes aborting a ZODB Connection that has added objects). (PR #7)
- changes from version 4.0.7:
* Avoid a KeyError from _p_accessed() on newly-created objects under pure-Python: these objects may be assigned to a jar, but not yet added to its cache. (PR #6)
* Avoid a failure in Persistent.__setstate__ when the state dict contains exactly two keys. (PR #5)
* Fix a hang in picklecache invalidation if OIDs are manually passed out-of-order. (PR #4)
* Add PURE_PYTHON environment variable support: if set, the C extensions will not be built, imported, or tested.
Sun Dec 29 13:00:00 2013 p.drouandAATTgmail.com
- Initial python3 release