Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite0faed4

Browse files
committed
Small patch to correct the default arraysize associated
with the Cursor object's fetchmany() method. The API andinline documentation state that the default is 1. Itcurrently defaults to 5.Patrick Macdonald
1 parentcc574c4 commite0faed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/interfaces/python/pgdb.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def __init__(self, src, cache):
170170
self.__source=src
171171
self.description=None
172172
self.rowcount=-1
173-
self.arraysize=5
173+
self.arraysize=1
174174

175175
defclose(self):
176176
self.__source.close()

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp