]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Removed accidental print statements
authorScott Dugas <scott.dugas@foundationdb.com>
Thu, 30 Oct 2014 20:40:36 +0000 (16:40 -0400)
committerScott Dugas <scott.dugas@foundationdb.com>
Thu, 30 Oct 2014 20:40:36 +0000 (16:40 -0400)
lib/sqlalchemy/testing/engines.py

index 75bcc58e11ab42c17b4121635cbdb5e728abf120..3a3f5be106d915abfa75612ea68ea51873ee0e33 100644 (file)
@@ -316,8 +316,6 @@ class DBAPIProxyConnection(object):
         self.cursor_cls = cursor_cls
 
     def cursor(self, *args, **kwargs):
-        print "DPA", args
-        print "DPK", kwargs
         return self.cursor_cls(self.engine, self.conn, *args, **kwargs)
 
     def close(self):