[Zodb-checkins] CVS: ZODB3/BTrees - BTreeModuleTemplate.c:1.37.92.7
Length.py:1.6.88.1
Jim Fulton
cvs-admin at zope.org
Tue Oct 28 16:28:58 EST 2003
Update of /cvs-repository/ZODB3/BTrees
In directory cvs.zope.org:/tmp/cvs-serv9166/BTrees
Modified Files:
Tag: zodb33-devel-branch
BTreeModuleTemplate.c Length.py
Log Message:
Renamed the Persistence package to persistent.
The Persistence package is still there for backward compatability.
=== ZODB3/BTrees/BTreeModuleTemplate.c 1.37.92.6 => 1.37.92.7 ===
--- ZODB3/BTrees/BTreeModuleTemplate.c:1.37.92.6 Thu Jul 10 10:54:41 2003
+++ ZODB3/BTrees/BTreeModuleTemplate.c Tue Oct 28 16:28:27 2003
@@ -436,7 +436,7 @@
}
/* Initialize the PyPersist_C_API and the type objects. */
- cPersistenceCAPI = PyCObject_Import("Persistence.cPersistence", "CAPI");
+ cPersistenceCAPI = PyCObject_Import("persistent.cPersistence", "CAPI");
if (cPersistenceCAPI == NULL)
return;
=== ZODB3/BTrees/Length.py 1.6 => 1.6.88.1 ===
--- ZODB3/BTrees/Length.py:1.6 Wed Aug 14 17:32:23 2002
+++ ZODB3/BTrees/Length.py Tue Oct 28 16:28:27 2003
@@ -12,9 +12,9 @@
#
##############################################################################
-import Persistence
+import persistent
-class Length(Persistence.Persistent):
+class Length(persistent.Persistent):
"""BTree lengths are too expensive to compute
Objects that use BTrees need to keep track of lengths themselves.
More information about the Zodb-checkins
mailing list