1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 05:00:03 +08:00
SpaceVim/bundle/jedi-vim/pythonx/jedi/test/completion/thirdparty/psycopg2_.py
2022-10-23 15:41:52 +08:00

12 lines
134 B
Python
Vendored

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