(self, meth_name)
| 272 | return data |
| 273 | |
| 274 | def _check_open(self, meth_name): |
| 275 | if self._state.closed: |
| 276 | raise exceptions.InterfaceError( |
| 277 | 'cannot call PreparedStmt.{}(): ' |
| 278 | 'the prepared statement is closed'.format(meth_name)) |
| 279 | |
| 280 | def _check_conn_validity(self, meth_name): |
| 281 | self._check_open(meth_name) |
no outgoing calls
no test coverage detected