| 115 | |
| 116 | |
| 117 | class TestSSDictCursor(TestDictCursor): |
| 118 | cursor_type = pymysql.cursors.SSDictCursor |
| 119 | |
| 120 | def _ensure_cursor_expired(self, cursor): |
| 121 | list(cursor.fetchall_unbuffered()) |
| 122 | |
| 123 | |
| 124 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected