(self)
| 302 | return status == psycopg.pq.TransactionStatus.ACTIVE or status == psycopg.pq.TransactionStatus.INTRANS |
| 303 | |
| 304 | def is_connection_closed(self): |
| 305 | return self.conn.info.transaction_status == psycopg.pq.TransactionStatus.UNKNOWN |
| 306 | |
| 307 | @property |
| 308 | def transaction_indicator(self): |
no outgoing calls
no test coverage detected