#14804: Remove [] around optional arguments with default values

This commit is contained in:
Hynek Schlawack 2012-05-21 13:35:03 +02:00
commit 87d8200978
8 changed files with 11 additions and 11 deletions

View file

@ -526,7 +526,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.