[Zope3-checkins] CVS: Zope3/src/zodb/btrees - Length.py:1.1.2.2
Fred L. Drake, Jr.
fred@zope.com
Mon, 23 Dec 2002 16:49:35 -0500
Update of /cvs-repository/Zope3/src/zodb/btrees
In directory cvs.zope.org:/tmp/cvs-serv14031
Modified Files:
Tag: NameGeddon-branch
Length.py
Log Message:
Fix reference to base class.
=== Zope3/src/zodb/btrees/Length.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zodb/btrees/Length.py:1.1.2.1 Mon Dec 23 14:30:46 2002
+++ Zope3/src/zodb/btrees/Length.py Mon Dec 23 16:49:35 2002
@@ -2,18 +2,18 @@
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
-#
+#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
-#
+#
##############################################################################
import persistence
-class Length(Persistence.Persistent):
+class Length(persistence.Persistent):
"""BTree lengths are too expensive to compute
Objects that use BTrees need to keep track of lengths themselves.