[Zodb-checkins] CVS: Zope/lib/python/ZODB - Connection.py:1.130

Jeremy Hylton jeremy at zope.com
Fri Feb 27 11:12:37 EST 2004


Update of /cvs-repository/Zope/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv15524

Modified Files:
	Connection.py 
Log Message:
These deprecations aren't pending.


=== Zope/lib/python/ZODB/Connection.py 1.129 => 1.130 ===
--- Zope/lib/python/ZODB/Connection.py:1.129	Fri Feb 27 09:54:27 2004
+++ Zope/lib/python/ZODB/Connection.py	Fri Feb 27 11:12:35 2004
@@ -376,14 +376,14 @@
     def cacheFullSweep(self, dt=0):
         # XXX needs doc string
         warnings.warn("cacheFullSweep is deprecated. "
-                      "Use cacheMinimize instead.", PendingDeprecationWarning)
+                      "Use cacheMinimize instead.", DeprecationWarning)
         self._cache.full_sweep(dt)
 
     def cacheMinimize(self, dt=None):
         # XXX needs doc string
         if dt is not None:
             warnings.warn("The dt argument to cacheMinimize is ignored.",
-                          PendingDeprecationWarning)
+                          DeprecationWarning)
         self._cache.minimize()
 
     __onCloseCallbacks = None
@@ -644,7 +644,7 @@
             # achieve that without assignment to _p_jar.  If there is
             # a way, this will be a very confusing warning.
             warnings.warn("Assigning to _p_jar is deprecated",
-                          PendingDeprecationWarning)
+                          DeprecationWarning)
         self.getTransaction().register(obj)
 
     def root(self):




More information about the Zodb-checkins mailing list