mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API.
This commit is contained in:
parent
b535d32952
commit
ef2276b60d
2 changed files with 3 additions and 1 deletions
|
|
@ -1389,7 +1389,7 @@ static PyMethodDef connection_methods[] = {
|
|||
{"interrupt", (PyCFunction)pysqlite_connection_interrupt, METH_NOARGS,
|
||||
PyDoc_STR("Abort any pending database operation. Non-standard.")},
|
||||
{"iterdump", (PyCFunction)pysqlite_connection_iterdump, METH_NOARGS,
|
||||
PyDoc_STR("Returns iterator to the dump of the database in an SQL text format.")},
|
||||
PyDoc_STR("Returns iterator to the dump of the database in an SQL text format. Non-standard.")},
|
||||
{"__enter__", (PyCFunction)pysqlite_connection_enter, METH_NOARGS,
|
||||
PyDoc_STR("For context manager. Non-standard.")},
|
||||
{"__exit__", (PyCFunction)pysqlite_connection_exit, METH_VARARGS,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue