Skip to content

Commit ab174fb

Browse files
author
Erlend E. Aasland
committed
Docstring: replace pysqlite with sqlite3
Replace two instances of "pysqlite" with "sqlite3" in sqlite3 docstrings. Also reword the same docstring with "does nothing" to "is a no-op" to align them with the docs.
1 parent 591f675 commit ab174fb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Modules/_sqlite/clinic/cursor.c.h

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/_sqlite/cursor.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -921,12 +921,12 @@ _sqlite3.Cursor.setinputsizes as pysqlite_cursor_setinputsizes
921921
sizes: object
922922
/
923923
924-
Required by DB-API. Does nothing in pysqlite.
924+
Required by DB-API. Is a no-op in sqlite3.
925925
[clinic start generated code]*/
926926

927927
static PyObject *
928928
pysqlite_cursor_setinputsizes(pysqlite_Cursor *self, PyObject *sizes)
929-
/*[clinic end generated code: output=893c817afe9d08ad input=7cffbb168663bc69]*/
929+
/*[clinic end generated code: output=893c817afe9d08ad input=fb94819915c45e78]*/
930930
{
931931
Py_RETURN_NONE;
932932
}
@@ -938,13 +938,13 @@ _sqlite3.Cursor.setoutputsize as pysqlite_cursor_setoutputsize
938938
column: object = None
939939
/
940940
941-
Required by DB-API. Does nothing in pysqlite.
941+
Required by DB-API. Is a no-op in sqlite3.
942942
[clinic start generated code]*/
943943

944944
static PyObject *
945945
pysqlite_cursor_setoutputsize_impl(pysqlite_Cursor *self, PyObject *size,
946946
PyObject *column)
947-
/*[clinic end generated code: output=018d7e9129d45efe input=077b017da58b9389]*/
947+
/*[clinic end generated code: output=018d7e9129d45efe input=ba9cf4b3647463f8]*/
948948
{
949949
Py_RETURN_NONE;
950950
}

0 commit comments

Comments
 (0)