summaryrefslogtreecommitdiff
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2012-05-21 11:01:54 +0200
committerHynek Schlawack <hs@ox.cx>2012-05-21 11:01:54 +0200
commitdfa465243c94b540099c413eb79b2774b40bb82e (patch)
tree3b67d5600dc9fa2be8843c024259336d73e69b1e /Doc/library/sqlite3.rst
parentf54c0604c852c2bf0b4d522cea7d94f205a795e8 (diff)
downloadcpython-git-dfa465243c94b540099c413eb79b2774b40bb82e.tar.gz
#14804: Remove [] around optional arguments with default values
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r--Doc/library/sqlite3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 41db5c37a9..babbfa566f 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -514,7 +514,7 @@ Cursor Objects
or :const:`None` when no more data is available.
-.. method:: Cursor.fetchmany([size=cursor.arraysize])
+.. method:: Cursor.fetchmany(size=cursor.arraysize)
Fetches the next set of rows of a query result, returning a list. An empty
list is returned when no more rows are available.