[Checkins] SVN: persistent/trunk/persistent/__init__.py fix spelling

David Glick davidglick at onenw.org
Thu Apr 14 00:34:57 EDT 2011


Log message for revision 121422:
  fix spelling

Changed:
  U   persistent/trunk/persistent/__init__.py

-=-
Modified: persistent/trunk/persistent/__init__.py
===================================================================
--- persistent/trunk/persistent/__init__.py	2011-04-14 04:29:37 UTC (rev 121421)
+++ persistent/trunk/persistent/__init__.py	2011-04-14 04:34:56 UTC (rev 121422)
@@ -23,14 +23,14 @@
     from cPersistence import STICKY
     from cPersistence import simple_new
 except ImportError: # XXX need pure-Python fallback
-    _HAVE_CPERSISTECE = False
+    _HAVE_CPERSISTENCE = False
     from pyPersistence import Persistent
     from pyPersistence import GHOST
     from pyPersistence import UPTODATE
     from pyPersistence import CHANGED
     from pyPersistence import STICKY
 else:
-    _HAVE_CPERSISTECE = True
+    _HAVE_CPERSISTENCE = True
     import copy_reg
     copy_reg.constructor(simple_new)
 
@@ -39,7 +39,7 @@
 except ImportError:
     from picklecache import PickleCache
 
-if _HAVE_CPERSISTECE:
+if _HAVE_CPERSISTENCE:
     # Make an interface declaration for Persistent, if zope.interface
     # is available.  XXX that the pyPersistent version already does this?
     try:



More information about the checkins mailing list