Files
jedi/test/completion/thirdparty/psycopg2_.py

12 lines
134 B
Python

import psycopg2
conn = psycopg2.connect('dbname=test')
#? ['cursor']
conn.cursor
cur = conn.cursor()
#? ['fetchall']
cur.fetchall