summaryrefslogtreecommitdiffstats
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2025-10-07 12:01:38 (GMT)
committerThomas Wouters <thomas@python.org>2025-10-07 12:01:51 (GMT)
commita15ae614deb58f78f9f4aa11ed18a0afc6a9df7d (patch)
treed64af15879120d3af94cfdef61d24639204dcda3 /Doc/library/sqlite3.rst
parentcb4b09a2e1cba32ddc016feb251d10c4519e2e5f (diff)
downloadcpython-3.13.8.zip
cpython-3.13.8.tar.gz
cpython-3.13.8.tar.bz2
Python 3.13.8v3.13.8
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r--Doc/library/sqlite3.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 7625bd0..39da468 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1630,7 +1630,7 @@ Cursor objects
If the *size* parameter is used, then it is best for it to retain the same
value from one :meth:`fetchmany` call to the next.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
Negative *size* values are rejected by raising :exc:`ValueError`.
.. method:: fetchall()
@@ -1660,7 +1660,7 @@ Cursor objects
Read/write attribute that controls the number of rows returned by :meth:`fetchmany`.
The default value is 1 which means a single row would be fetched per call.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
Negative values are rejected by raising :exc:`ValueError`.
.. attribute:: connection