[Zope3-checkins] CVS: Zope3/lib/python/Persistence - Function.py:1.10 __init__.py:1.6
Jeremy Hylton
jeremy@zope.com
Mon, 5 Aug 2002 16:09:09 -0400
Update of /cvs-repository/Zope3/lib/python/Persistence
In directory cvs.zope.org:/tmp/cvs-serv1296/lib/python/Persistence
Modified Files:
Function.py __init__.py
Log Message:
PersistentMapping is now PersistentDict (by popular demand).
Note that this change will break any old pickles.
=== Zope3/lib/python/Persistence/Function.py 1.9 => 1.10 ===
# We must make sure that _module is loaded when func is
# executed because the function may reference a global
# variable and that global variable must be in the module's
- # __dict__. We can't use a PersistentMapping because the
+ # __dict__. We can't use a PersistentDict because the
# interpreter requires that globals be a real dict.
self._pf_module._p_activate()
=== Zope3/lib/python/Persistence/__init__.py 1.5 => 1.6 ===
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Provide access to Persistent and PersistentMapping"""
+"""Provide access to Persistent and BasePersistent C extension types."""
from cPersistence import Persistent, BasePersistent