mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-18 01:45:02 +08:00
10 lines
117 B
Python
10 lines
117 B
Python
conn = psycopg2.connect('dbname=test')
|
|
|
|
#? ['cursor']
|
|
conn.cursor
|
|
|
|
cur = conn.cursor()
|
|
|
|
#? ['fetchall']
|
|
cur.fetchall
|