gh-97661: Improve accuracy of sqlite3.Cursor.fetchone docs (GH-97662)

Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
(cherry picked from commit 4b83cd0b22)

Co-authored-by: Jia Junjie <62194633+jiajunjie@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-10-05 01:56:47 -07:00 committed by GitHub
parent ece5f7e046
commit 3c09debaa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1121,7 +1121,9 @@ Cursor objects
.. method:: fetchone()
Return the next row of a query result set as a :class:`tuple`.
If :attr:`~Connection.row_factory` is ``None``,
return the next row query result set as a :class:`tuple`.
Else, pass it to the row factory and return its result.
Return ``None`` if no more data is available.