[Checkins] SVN: zc.twist/branches/benji-make-work-with-zodb-3.8/src/zc/twist/__init__.py we do not think the bug magnet of having the missing/ignored fields first is worth the backwards compatibility on a package we doubt anyone else cares about right now

Gary Poster gary at zope.com
Thu Jun 28 17:35:27 EDT 2007


Log message for revision 77196:
  we do not think the bug magnet of having the missing/ignored fields first is worth the backwards compatibility on a package we doubt anyone else cares about right now

Changed:
  U   zc.twist/branches/benji-make-work-with-zodb-3.8/src/zc/twist/__init__.py

-=-
Modified: zc.twist/branches/benji-make-work-with-zodb-3.8/src/zc/twist/__init__.py
===================================================================
--- zc.twist/branches/benji-make-work-with-zodb-3.8/src/zc/twist/__init__.py	2007-06-28 21:16:58 UTC (rev 77195)
+++ zc.twist/branches/benji-make-work-with-zodb-3.8/src/zc/twist/__init__.py	2007-06-28 21:35:26 UTC (rev 77196)
@@ -78,15 +78,7 @@
 
 missing = object()
 
-def get_connection(db, mvcc=missing, version=missing, synch=missing,
-                   deferred=None, backoff=None):
-
-    if mvcc is not missing:
-        warnings.warn('the mvcc parameter is now ignored')
-    if version is not missing:
-        warnings.warn('the version parameter is now ignored')
-    if synch is not missing:
-        warnings.warn('the synch parameter is now ignored')
+def get_connection(db, deferred=None, backoff=None):
     if deferred is None:
         deferred = twisted.internet.defer.Deferred()
     if backoff is None:



More information about the Checkins mailing list