]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Remove spurious print statements in pg8000 dialect
authorTony Locke <tlocke@tlocke.org.uk>
Sat, 26 Jul 2014 17:56:56 +0000 (18:56 +0100)
committerTony Locke <tlocke@tlocke.org.uk>
Sat, 2 Aug 2014 14:29:36 +0000 (15:29 +0100)
lib/sqlalchemy/dialects/postgresql/pg8000.py

index 68da5b6d7c5c75e5378c4f51e467f38ba0c8832f..2793b048da6a80e546df1f9e0994c34dfeedaae8 100644 (file)
@@ -172,11 +172,9 @@ class PGDialect_pg8000(PGDialect):
             )
 
     def do_begin_twophase(self, connection, xid):
-        print("begin twophase", xid)
         connection.connection.tpc_begin((0, xid, ''))
 
     def do_prepare_twophase(self, connection, xid):
-        print("prepare twophase", xid)
         connection.connection.tpc_prepare()
 
     def do_rollback_twophase(