]> git.ipfire.org Git - thirdparty/psycopg.git/commit
Adding a first implementation of the libpq wrapper and tests
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 13 Mar 2020 10:27:19 +0000 (23:27 +1300)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 13 Mar 2020 10:27:19 +0000 (23:27 +1300)
commitaecc520b010bc58f86c90ef9c39bc86a3343aa73
tree1cc433ec5263148e26aa1d38b2f616b63f7d8501
parent45146ebffb4c23439c56cd2075ff0bd5925b9d43
Adding a first implementation of the libpq wrapper and tests
14 files changed:
.gitignore
README.rst [new file with mode: 0644]
psycopg3/__init__.py [new file with mode: 0644]
psycopg3/_pq_ctypes.py [new file with mode: 0644]
psycopg3/consts.py [new file with mode: 0644]
psycopg3/pq.py [new file with mode: 0644]
psycopg3/pq_ctypes.py [new file with mode: 0644]
psycopg3/pq_enums.py [new file with mode: 0644]
pyproject.toml [new file with mode: 0644]
setup.py [new file with mode: 0644]
tests/__init__.py [new file with mode: 0644]
tests/conftest.py [new file with mode: 0644]
tests/fix_db.py [new file with mode: 0644]
tests/test_pq.py [new file with mode: 0644]