8000 bpo-40956: fix sqlite3.Cursor.fetchmany() default value by erlend-aasland · Pull Request #24214 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-40956: fix sqlite3.Cursor.fetchmany() default value #24214

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 8 commits into from
Jan 13, 2021
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
Prev Previous commit
Next Next commit
Address review: Adjust parameter docstring wording
  • Loading branch information
Erlend E. Aasland committed Jan 13, 2021
commit bd51d3f46b173abfe16df321cdf5300c751cdc2d
2 changes: 1 addition & 1 deletion Modules/_sqlite/cursor.c
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ pysqlite_cursor_fetchone_impl(pysqlite_Cursor *self)
_sqlite3.Cursor.fetchmany as pysqlite_cursor_fetchmany

size as maxrows: int(c_default='self->arraysize', py_default='<unrepresentable>') = 1
The number of rows to fetch. Defaults to the cursor's arraysize.
The default value is set by the Cursor.arraysize attribute.

Fetches several rows from the resultset.
[clinic start generated code]*/
Expand Down
0