From: csabella Date: Tue, 4 Apr 2017 05:16:14 +0000 (-0400) Subject: bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947) X-Git-Tag: v3.7.0a1~1010 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=02e12138000da834f23719521a011fa93763384d;p=python bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947) * bpo-29725: DOC: add text for arraysize in sqlite3.Cursor --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index d1f7a6f120..9fef7d7f03 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -640,6 +640,11 @@ Cursor Objects .. versionchanged:: 3.6 Added support for the ``REPLACE`` statement. + .. attribute:: arraysize + + 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. + .. attribute:: description This read-only attribute provides the column names of the last query. To