Import asyncpg_0.8.4.orig.tar.gz
authorPiotr Ożarowski <piotr@debian.org>
Tue, 10 Jan 2017 19:19:24 +0000 (19:19 +0000)
committerPiotr Ożarowski <piotr@debian.org>
Tue, 10 Jan 2017 19:19:24 +0000 (19:19 +0000)
commitcc110f5fda9e5a12c42bda64b5a48cbc848ef242
treeae45d58d8a438f8a2aed34a4cef82485008f1997
Import asyncpg_0.8.4.orig.tar.gz

[dgit import orig asyncpg_0.8.4.orig.tar.gz]
89 files changed:
LICENSE [new file with mode: 0644]
MANIFEST.in [new file with mode: 0644]
Makefile [new file with mode: 0644]
PKG-INFO [new file with mode: 0644]
README.rst [new file with mode: 0644]
asyncpg.egg-info/PKG-INFO [new file with mode: 0644]
asyncpg.egg-info/SOURCES.txt [new file with mode: 0644]
asyncpg.egg-info/dependency_links.txt [new file with mode: 0644]
asyncpg.egg-info/top_level.txt [new file with mode: 0644]
asyncpg/__init__.py [new file with mode: 0644]
asyncpg/_testbase.py [new file with mode: 0644]
asyncpg/cluster.py [new file with mode: 0644]
asyncpg/compat.py [new file with mode: 0644]
asyncpg/connection.py [new file with mode: 0644]
asyncpg/cursor.py [new file with mode: 0644]
asyncpg/exceptions/__init__.py [new file with mode: 0644]
asyncpg/exceptions/_base.py [new file with mode: 0644]
asyncpg/introspection.py [new file with mode: 0644]
asyncpg/pool.py [new file with mode: 0644]
asyncpg/prepared_stmt.py [new file with mode: 0644]
asyncpg/protocol/__init__.py [new file with mode: 0644]
asyncpg/protocol/buffer.pxd [new file with mode: 0644]
asyncpg/protocol/buffer.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/__init__.py [new file with mode: 0644]
asyncpg/protocol/codecs/array.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/base.pxd [new file with mode: 0644]
asyncpg/protocol/codecs/base.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/bits.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/bytea.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/datetime.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/float.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/geometry.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/hstore.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/int.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/json.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/misc.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/money.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/network.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/numeric.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/range.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/record.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/text.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/textutils.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/tsearch.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/txid.pyx [new file with mode: 0644]
asyncpg/protocol/codecs/uuid.pyx [new file with mode: 0644]
asyncpg/protocol/consts.pxi [new file with mode: 0644]
asyncpg/protocol/coreproto.pxd [new file with mode: 0644]
asyncpg/protocol/coreproto.pyx [new file with mode: 0644]
asyncpg/protocol/debug.h [new file with mode: 0644]
asyncpg/protocol/debug.pxd [new file with mode: 0644]
asyncpg/protocol/encodings.pyx [new file with mode: 0644]
asyncpg/protocol/hton.pxd [new file with mode: 0644]
asyncpg/protocol/pgtypes.pxi [new file with mode: 0644]
asyncpg/protocol/prepared_stmt.pxd [new file with mode: 0644]
asyncpg/protocol/prepared_stmt.pyx [new file with mode: 0644]
asyncpg/protocol/protocol.c [new file with mode: 0644]
asyncpg/protocol/protocol.pxd [new file with mode: 0644]
asyncpg/protocol/protocol.pyx [new file with mode: 0644]
asyncpg/protocol/python.pxd [new file with mode: 0644]
asyncpg/protocol/record/__init__.pxd [new file with mode: 0644]
asyncpg/protocol/record/recordobj.c [new file with mode: 0644]
asyncpg/protocol/record/recordobj.h [new file with mode: 0644]
asyncpg/protocol/settings.pxd [new file with mode: 0644]
asyncpg/protocol/settings.pyx [new file with mode: 0644]
asyncpg/serverversion.py [new file with mode: 0644]
asyncpg/transaction.py [new file with mode: 0644]
asyncpg/types.py [new file with mode: 0644]
docs/api/index.rst [new file with mode: 0644]
docs/conf.py [new file with mode: 0644]
docs/examples.rst [new file with mode: 0644]
docs/index.rst [new file with mode: 0644]
docs/installation.rst [new file with mode: 0644]
performance.png [new file with mode: 0644]
setup.cfg [new file with mode: 0644]
setup.py [new file with mode: 0644]
tests/test_cancellation.py [new file with mode: 0644]
tests/test_codecs.py [new file with mode: 0644]
tests/test_connect.py [new file with mode: 0644]
tests/test_cursor.py [new file with mode: 0644]
tests/test_exceptions.py [new file with mode: 0644]
tests/test_execute.py [new file with mode: 0644]
tests/test_listeners.py [new file with mode: 0644]
tests/test_pool.py [new file with mode: 0644]
tests/test_prepare.py [new file with mode: 0644]
tests/test_record.py [new file with mode: 0644]
tests/test_test.py [new file with mode: 0644]
tests/test_timeout.py [new file with mode: 0644]
tests/test_transaction.py [new file with mode: 0644]