-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCHANGES.txt
43 lines (26 loc) · 948 Bytes
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Changes
=======
In next release ...
Bugfixes:
- Persistent subclasses now correctly call ``__init__`` on
construction.
- Add support for ``__slots__``.
0.3 (2012-02-02)
----------------
- Add support for Python 3.
- Use C-optimized pickle module when available.
0.2 (2009-10-22)
----------------
- Subclasses may now override existing methods (e.g. ``__setattr__``)
and use ``super`` to get at the overriden method.
- Transactions now see data in isolation.
- When a persistent object is first created, its state is immediately
local. This allows an ``__init__`` method to initialize the object.
- Added method to create a snapshot in time of an existing database.
- Added ``PersistentDict`` class.
- The ``Persistent`` class is now persisted as changesets rather than
complete object state.
- Set up tests to run using the nose testrunner (or using setuptools).
0.1 (2009-09-26)
----------------
- Initial public release.