mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
[3.10] gh-94321: Document sqlite3.PrepareProtocol (GH-94620) (#94671)
(cherry picked from commit fb6dccae34
)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
parent
860aefaeca
commit
797745e749
3 changed files with 17 additions and 0 deletions
|
@ -46,10 +46,13 @@ pysqlite_prepare_protocol_dealloc(pysqlite_PrepareProtocol *self)
|
|||
Py_DECREF(tp);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(doc, "PEP 246 style object adaption protocol type.");
|
||||
|
||||
static PyType_Slot type_slots[] = {
|
||||
{Py_tp_dealloc, pysqlite_prepare_protocol_dealloc},
|
||||
{Py_tp_init, pysqlite_prepare_protocol_init},
|
||||
{Py_tp_traverse, pysqlite_prepare_protocol_traverse},
|
||||
{Py_tp_doc, (void *)doc},
|
||||
{0, NULL},
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue