(self)
| 295 | return cur.fetchone() |
| 296 | |
| 297 | def failed_transaction(self): |
| 298 | return self.conn.info.transaction_status == psycopg.pq.TransactionStatus.INERROR |
| 299 | |
| 300 | def valid_transaction(self): |
| 301 | status = self.conn.info.transaction_status |
no outgoing calls
no test coverage detected