mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
[3.10] Docstring: replace pysqlite with sqlite3 (GH-31758) (GH-31777)
Replace two instances of "pysqlite" with "sqlite3" in sqlite3
docstrings. Also reword "is a no-op" to "does nothing" for clarity..
(cherry picked from commit b33a1ae703
)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
This commit is contained in:
parent
26fa25a9a7
commit
5dfe981791
3 changed files with 9 additions and 9 deletions
|
@ -935,12 +935,12 @@ _sqlite3.Cursor.setinputsizes as pysqlite_cursor_setinputsizes
|
|||
sizes: object
|
||||
/
|
||||
|
||||
Required by DB-API. Does nothing in pysqlite.
|
||||
Required by DB-API. Does nothing in sqlite3.
|
||||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
pysqlite_cursor_setinputsizes(pysqlite_Cursor *self, PyObject *sizes)
|
||||
/*[clinic end generated code: output=893c817afe9d08ad input=7cffbb168663bc69]*/
|
||||
/*[clinic end generated code: output=893c817afe9d08ad input=de7950a3aec79bdf]*/
|
||||
{
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
@ -952,13 +952,13 @@ _sqlite3.Cursor.setoutputsize as pysqlite_cursor_setoutputsize
|
|||
column: object = None
|
||||
/
|
||||
|
||||
Required by DB-API. Does nothing in pysqlite.
|
||||
Required by DB-API. Does nothing in sqlite3.
|
||||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
pysqlite_cursor_setoutputsize_impl(pysqlite_Cursor *self, PyObject *size,
|
||||
PyObject *column)
|
||||
/*[clinic end generated code: output=018d7e9129d45efe input=077b017da58b9389]*/
|
||||
/*[clinic end generated code: output=018d7e9129d45efe input=607a6bece8bbb273]*/
|
||||
{
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue