psycopg2 fix for github issue 4

This commit is contained in:
David Halter
2012-09-03 01:02:38 +02:00
parent e18361d161
commit c9fb482480
2 changed files with 12 additions and 0 deletions

9
test/completion/thirdparty/psycopg.py vendored Normal file
View File

@@ -0,0 +1,9 @@
conn = psycopg2.connect('dbname=test')
#? ['cursor']
conn.cursor
cur = conn.cursor()
#? ['fetchall']
cur.fetchall