Skip to content

Commit

Permalink
i
Browse files Browse the repository at this point in the history
  • Loading branch information
tlocke committed Oct 31, 2023
1 parent 6bcb2ee commit f2f6fa4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pg8000/dbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,6 @@ def description(self):
# <p>
# Stability: Part of the DBAPI 2.0 specification.
def execute(self, operation, args=(), stream=None):
print("doing execute", operation)
"""Executes a database operation. Parameters may be provided as a
sequence, or as a mapping, depending upon the value of
:data:`pg8000.paramstyle`.
Expand Down Expand Up @@ -477,9 +476,6 @@ def execute(self, operation, args=(), stream=None):
self._row_iter = None
else:
self._row_iter = iter(self._context.rows)

print("operation", operation)
print("context", self._context)
self._input_oids = ()
except AttributeError as e:
if self._c is None:
Expand Down

0 comments on commit f2f6fa4

Please sign in to comment.