(self, cursor)
| 55 | return threadData.hashDBCursor |
| 56 | |
| 57 | def _set_cursor(self, cursor): |
| 58 | threadData = getCurrentThreadData() |
| 59 | threadData.hashDBCursor = cursor |
| 60 | |
| 61 | cursor = property(_get_cursor, _set_cursor) |
| 62 |
nothing calls this directly
no test coverage detected