8000 gh-97661: Improve accuracy of sqlite3.Cursor.fetchone docs by jiajunjie · Pull Request #97662 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-97661: Improve accuracy of sqlite3.Cursor.fetchone docs #97662

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 5, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add a return value in sqlite3.Cursor.fetchone document
  • Loading branch information
jiajunjie authored Sep 30, 2022
commit 962f75b225960a6bbb1b9a9244c654c1611c305f
3 changes: 2 additions & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1425,7 +1425,8 @@ Cursor objects

.. method:: fetchone()

Return the next row of a query result set as a :class:`tuple`.
Return the next row of a query result set as a :class:`tuple` or an object
returned by :attr:`~Connection.row_factory`.
Return ``None`` if no more data is available.


Expand Down
0