diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2022-03-09 02:45:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 02:45:48 (GMT) |
commit | b33a1ae703338e09dc0af5fbfd8ffa01d3ff75da (patch) | |
tree | a3f120387750cb70941cf3688500cf077b0299b4 /Doc | |
parent | 95ba723c54ab52487bc9f986b651536cfae15b29 (diff) | |
download | cpython-b33a1ae703338e09dc0af5fbfd8ffa01d3ff75da.zip cpython-b33a1ae703338e09dc0af5fbfd8ffa01d3ff75da.tar.gz cpython-b33a1ae703338e09dc0af5fbfd8ffa01d3ff75da.tar.bz2 |
Docstring: replace pysqlite with sqlite3 (GH-31758)
Replace two instances of "pysqlite" with "sqlite3" in sqlite3
docstrings. Also reword "is a no-op" to "does nothing" for clarity.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sqlite3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index d213933..c456905 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -836,11 +836,11 @@ Cursor Objects .. method:: setinputsizes(sizes) - Required by the DB-API. Is a no-op in :mod:`sqlite3`. + Required by the DB-API. Does nothing in :mod:`sqlite3`. .. method:: setoutputsize(size [, column]) - Required by the DB-API. Is a no-op in :mod:`sqlite3`. + Required by the DB-API. Does nothing in :mod:`sqlite3`. .. attribute:: rowcount |