(rec: ConnectionPoolEntry)
| 493 | # used by the test suite to make a new engine / pool without |
| 494 | # losing the state of an existing SQLite :memory: connection |
| 495 | def creator(rec: ConnectionPoolEntry) -> DBAPIConnection: |
| 496 | conn = other_static_pool.connection.dbapi_connection |
| 497 | assert conn is not None |
| 498 | return conn |
| 499 | |
| 500 | self._invoke_creator = creator |
| 501 |
no outgoing calls
no test coverage detected