Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 35.2k
bpo-42972: Fully implement GC protocol for sqlite3 heap types#26104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
6ece632866060913bc519451901720da088ca870acf5d987334928ed590ff8eb080ff72bcfa29f8eb733ab4c6e6926787dFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -225,28 +225,51 @@ pysqlite_do_all_statements(pysqlite_Connection *self, int action, | ||
| } | ||
| } | ||
| static int | ||
| connection_traverse(pysqlite_Connection *self, visitproc visit, void *arg) | ||
| { | ||
| Py_VISIT(self->statement_cache); | ||
erlend-aasland marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| Py_VISIT(self->isolation_level); | ||
| Py_VISIT(self->function_pinboard_trace_callback); | ||
| Py_VISIT(self->function_pinboard_progress_handler); | ||
| Py_VISIT(self->function_pinboard_authorizer_cb); | ||
| Py_VISIT(self->row_factory); | ||
| Py_VISIT(self->text_factory); | ||
| Py_VISIT(self->collations); | ||
| Py_VISIT(self->statements); | ||
| Py_VISIT(self->cursors); | ||
| Py_VISIT(Py_TYPE(self)); | ||
| return 0; | ||
| } | ||
| static int | ||
| connection_clear(pysqlite_Connection *self) | ||
| { | ||
| Py_CLEAR(self->statement_cache); | ||
| Py_CLEAR(self->isolation_level); | ||
| Py_CLEAR(self->function_pinboard_trace_callback); | ||
| Py_CLEAR(self->function_pinboard_progress_handler); | ||
| Py_CLEAR(self->function_pinboard_authorizer_cb); | ||
| Py_CLEAR(self->row_factory); | ||
| Py_CLEAR(self->text_factory); | ||
| Py_CLEAR(self->collations); | ||
| Py_CLEAR(self->statements); | ||
| Py_CLEAR(self->cursors); | ||
| return 0; | ||
| } | ||
| static void | ||
| pysqlite_connection_dealloc(pysqlite_Connection *self) | ||
| connection_dealloc(pysqlite_Connection *self) | ||
| { | ||
| PyTypeObject *tp = Py_TYPE(self); | ||
| Py_XDECREF(self->statement_cache); | ||
| PyObject_GC_UnTrack(self); | ||
| tp->tp_clear((PyObject *)self); | ||
| /* Clean up if user has not called .close() explicitly. */ | ||
| if (self->db) { | ||
| sqlite3_close_v2(self->db); | ||
| } | ||
| Py_XDECREF(self->isolation_level); | ||
| Py_XDECREF(self->function_pinboard_trace_callback); | ||
| Py_XDECREF(self->function_pinboard_progress_handler); | ||
| Py_XDECREF(self->function_pinboard_authorizer_cb); | ||
| Py_XDECREF(self->row_factory); | ||
| Py_XDECREF(self->text_factory); | ||
| Py_XDECREF(self->collations); | ||
| Py_XDECREF(self->statements); | ||
| Py_XDECREF(self->cursors); | ||
| tp->tp_free(self); | ||
| Py_DECREF(tp); | ||
| } | ||
| @@ -1328,7 +1351,7 @@ pysqlite_connection_call(pysqlite_Connection *self, PyObject *args, | ||
| _pysqlite_drop_unused_statement_references(self); | ||
| statement = PyObject_New(pysqlite_Statement, pysqlite_StatementType); | ||
| statement = PyObject_GC_New(pysqlite_Statement, pysqlite_StatementType); | ||
| if (!statement) { | ||
| return NULL; | ||
| } | ||
| @@ -1909,21 +1932,22 @@ static struct PyMemberDef connection_members[] = | ||
| }; | ||
| static PyType_Slot connection_slots[] = { | ||
| {Py_tp_dealloc, pysqlite_connection_dealloc}, | ||
| {Py_tp_dealloc, connection_dealloc}, | ||
| {Py_tp_doc, (void *)connection_doc}, | ||
| {Py_tp_methods, connection_methods}, | ||
| {Py_tp_members, connection_members}, | ||
| {Py_tp_getset, connection_getset}, | ||
| {Py_tp_new, PyType_GenericNew}, | ||
| {Py_tp_init, pysqlite_connection_init}, | ||
| {Py_tp_call, pysqlite_connection_call}, | ||
| {Py_tp_traverse, connection_traverse}, | ||
| {Py_tp_clear, connection_clear}, | ||
| {0, NULL}, | ||
| }; | ||
| static PyType_Spec connection_spec = { | ||
| .name = MODULE_NAME ".Connection", | ||
| .basicsize = sizeof(pysqlite_Connection), | ||
| .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, | ||
| .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, | ||
| .slots = connection_slots, | ||
| }; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -30,26 +30,33 @@ pysqlite_prepare_protocol_init(pysqlite_PrepareProtocol *self, PyObject *args, | ||
| return 0; | ||
| } | ||
| static int | ||
| pysqlite_prepare_protocol_traverse(PyObject *self, visitproc visit, void *arg) | ||
erlend-aasland marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| { | ||
| Py_VISIT(Py_TYPE(self)); | ||
| return 0; | ||
| } | ||
| static void | ||
| pysqlite_prepare_protocol_dealloc(pysqlite_PrepareProtocol *self) | ||
| { | ||
| PyTypeObject *tp = Py_TYPE(self); | ||
| PyObject_GC_UnTrack(self); | ||
| tp->tp_free(self); | ||
| Py_DECREF(tp); | ||
| } | ||
| static PyType_Slot type_slots[] = { | ||
| {Py_tp_dealloc, pysqlite_prepare_protocol_dealloc}, | ||
| {Py_tp_new, PyType_GenericNew}, | ||
| {Py_tp_init, pysqlite_prepare_protocol_init}, | ||
| {Py_tp_traverse, pysqlite_prepare_protocol_traverse}, | ||
| {0, NULL}, | ||
| }; | ||
| static PyType_Spec type_spec = { | ||
| .name = MODULE_NAME ".PrepareProtocol", | ||
| .basicsize = sizeof(pysqlite_PrepareProtocol), | ||
| .flags = Py_TPFLAGS_DEFAULT, | ||
| .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, | ||
| .slots = type_slots, | ||
| }; | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.