[Python-modules-commits] [asyncpg] branch master updated (e1c27c6 -> d559bc7)

Piotr Ożarowski piotr at moszumanska.debian.org
Tue Jun 20 15:05:38 UTC 2017


This is an automated email from the git hooks/post-receive script.

piotr pushed a change to branch master
in repository asyncpg.

      from  e1c27c6   add python3-pytest to Build-Depends
       new  c057c9e   Import asyncpg_0.11.0.orig.tar.gz
       new  601188c   record new upstream branch created by importing asyncpg_0.11.0.orig.tar.gz and merge it
       new  b30f3ca   New upstream release
       new  d559bc7   Standards-Version bumped to 4.0.0 (no changes needed)

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile                              |    16 +-
 PKG-INFO                              |     4 +-
 asyncpg.egg-info/PKG-INFO             |     4 +-
 asyncpg.egg-info/SOURCES.txt          |    14 +-
 asyncpg/__init__.py                   |     8 +-
 asyncpg/_testbase.py                  |    84 +-
 asyncpg/cluster.py                    |    19 +-
 asyncpg/compat.py                     |    29 +-
 asyncpg/connect_utils.py              |   387 +
 asyncpg/connection.py                 |  1238 +-
 asyncpg/cursor.py                     |    10 +-
 asyncpg/exceptions/__init__.py        |    30 +-
 asyncpg/exceptions/_base.py           |    54 +-
 asyncpg/introspection.py              |     2 +-
 asyncpg/pool.py                       |   569 +-
 asyncpg/prepared_stmt.py              |    36 +-
 asyncpg/protocol/__init__.py          |     4 +-
 asyncpg/protocol/buffer.pxd           |     9 +-
 asyncpg/protocol/buffer.pyx           |    89 +-
 asyncpg/protocol/codecs/array.pyx     |   310 +-
 asyncpg/protocol/codecs/base.pxd      |     6 +-
 asyncpg/protocol/codecs/base.pyx      |   142 +-
 asyncpg/protocol/codecs/bits.pyx      |     2 +-
 asyncpg/protocol/codecs/bytea.pyx     |     2 +-
 asyncpg/protocol/codecs/datetime.pyx  |     2 +-
 asyncpg/protocol/codecs/float.pyx     |     2 +-
 asyncpg/protocol/codecs/geometry.pyx  |     2 +-
 asyncpg/protocol/codecs/hstore.pyx    |     2 +-
 asyncpg/protocol/codecs/int.pyx       |     2 +-
 asyncpg/protocol/codecs/json.pyx      |     2 +-
 asyncpg/protocol/codecs/misc.pyx      |     2 +-
 asyncpg/protocol/codecs/money.pyx     |     2 +-
 asyncpg/protocol/codecs/network.pyx   |     2 +-
 asyncpg/protocol/codecs/numeric.pyx   |     2 +-
 asyncpg/protocol/codecs/range.pyx     |     2 +-
 asyncpg/protocol/codecs/record.pyx    |     2 +-
 asyncpg/protocol/codecs/text.pyx      |     8 +-
 asyncpg/protocol/codecs/textutils.pyx |    39 +-
 asyncpg/protocol/codecs/tsearch.pyx   |     2 +-
 asyncpg/protocol/codecs/txid.pyx      |     2 +-
 asyncpg/protocol/codecs/uuid.pyx      |     2 +-
 asyncpg/protocol/consts.pxi           |     4 +-
 asyncpg/protocol/coreproto.pxd        |    24 +-
 asyncpg/protocol/coreproto.pyx        |   213 +-
 asyncpg/protocol/encodings.pyx        |     2 +-
 asyncpg/protocol/hton.pxd             |     2 +-
 asyncpg/protocol/pgtypes.pxi          |     2 +-
 asyncpg/protocol/prepared_stmt.pxd    |     2 +-
 asyncpg/protocol/prepared_stmt.pyx    |     5 +-
 asyncpg/protocol/protocol.c           | 48107 ++++++++++++++++++++------------
 asyncpg/protocol/protocol.pxd         |    13 +-
 asyncpg/protocol/protocol.pyx         |   323 +-
 asyncpg/protocol/python.pxd           |     7 +-
 asyncpg/protocol/record/__init__.pxd  |     7 +-
 asyncpg/protocol/record/recordobj.c   |    15 +-
 asyncpg/protocol/record/recordobj.h   |     6 +-
 asyncpg/protocol/settings.pxd         |     2 +-
 asyncpg/protocol/settings.pyx         |     5 +-
 asyncpg/serverversion.py              |    21 +-
 asyncpg/transaction.py                |     8 +-
 asyncpg/types.py                      |     4 +-
 asyncpg/utils.py                      |    45 +
 debian/.git-dpm                       |    14 +-
 debian/changelog                      |     7 +
 debian/control                        |     2 +-
 docs/api/index.rst                    |    26 +-
 docs/conf.py                          |     7 +-
 docs/examples.rst                     |    47 -
 docs/faq.rst                          |    41 +
 docs/index.rst                        |     8 +-
 docs/usage.rst                        |   281 +
 setup.cfg                             |     1 -
 setup.py                              |    27 +-
 tests/__init__.py                     |     7 +
 tests/certs/ca.cert.pem               |    35 +
 tests/certs/server.cert.pem           |    40 +
 tests/certs/server.key.pem            |    51 +
 tests/test_cache_invalidation.py      |    85 +
 tests/test_cancellation.py            |     2 +-
 tests/test_codecs.py                  |   202 +-
 tests/test_connect.py                 |   329 +-
 tests/test_copy.py                    |   597 +
 tests/test_cursor.py                  |     2 +-
 tests/test_exceptions.py              |    36 +-
 tests/test_execute.py                 |    24 +-
 tests/test_listeners.py               |     2 +-
 tests/test_pool.py                    |   435 +-
 tests/test_prepare.py                 |   191 +-
 tests/test_record.py                  |    14 +-
 tests/test_test.py                    |    13 +-
 tests/test_timeout.py                 |    45 +-
 tests/test_transaction.py             |    20 +-
 tests/test_utils.py                   |    37 +
 93 files changed, 35569 insertions(+), 19021 deletions(-)
 create mode 100644 asyncpg/connect_utils.py
 create mode 100644 asyncpg/utils.py
 delete mode 100644 docs/examples.rst
 create mode 100644 docs/faq.rst
 create mode 100644 docs/usage.rst
 create mode 100644 tests/__init__.py
 create mode 100644 tests/certs/ca.cert.pem
 create mode 100644 tests/certs/server.cert.pem
 create mode 100644 tests/certs/server.key.pem
 create mode 100644 tests/test_cache_invalidation.py
 create mode 100644 tests/test_copy.py
 create mode 100644 tests/test_utils.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/asyncpg.git



More information about the Python-modules-commits mailing list