[Python-modules-commits] [python-pika] branch master updated (f4166f1 -> 9ae79a9)

Christopher Stuart Hoskin mans0954 at moszumanska.debian.org
Wed Sep 27 03:31:13 UTC 2017


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

mans0954 pushed a change to branch master
in repository python-pika.

      from  f4166f1   Release 0.10.0-3 to unstable
       new  f9ddb76   record new upstream branch created by importing python-pika_0.11.0.orig.tar.gz
       new  60eafcb   Import python-pika_0.11.0.orig.tar.gz
       new  388b128   merge patched into master
       new  2676db2   New upstream release (0.11.0)
       new  8a7e2c7   Update Homepage in debian/control
       new  d497910   Clean *.egg-info/*
       new  3f31963   Build-depend on python3-sphinx, not python-sphinx
       new  d5c62fe   Bump Standards-Version from 4.0.0 to 4.1.0 (no change required)
       new  9ae79a9   Update debian/copyright Format: URL

The 9 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:
 .checkignore                                       |    8 +-
 .codeclimate.yml                                   |   14 +-
 .gitignore                                         |    2 +
 .travis.yml                                        |   42 +-
 CHANGELOG.rst                                      |   79 +-
 CONTRIBUTING.md                                    |   45 +
 LICENSE                                            |    2 +-
 README.rst                                         |   37 +-
 appveyor.yml                                       |   86 +
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |   12 +
 debian/clean                                       |    1 +
 debian/control                                     |    6 +-
 debian/copyright                                   |    2 +-
 debian/patches/0001-Fix-the-channel-tests.patch    |   54 -
 ...Make-the-test-more-reliable-in-Python-3.5.patch |   27 -
 debian/patches/series                              |    2 -
 debian/source/options                              |    1 +
 docs/examples.rst                                  |    2 +
 docs/examples/asynchronous_publisher_example.rst   |  119 +-
 .../{tornado_consumer.rst => asyncio_consumer.rst} |   12 +-
 docs/examples/blocking_basic_get.rst               |    4 +-
 docs/examples/blocking_consume.rst                 |   28 +-
 docs/examples/blocking_consumer_generator.rst      |    8 +-
 docs/examples/blocking_delivery_confirmations.rst  |    4 +-
 docs/examples/blocking_publish_mandatory.rst       |    6 +-
 docs/examples/direct_reply_to.rst                  |   81 +
 docs/examples/heartbeat_and_blocked_timeouts.rst   |   37 +
 docs/examples/tls_mutual_authentication.rst        |   61 +
 docs/examples/tls_server_uathentication.rst        |   60 +
 docs/examples/twisted_example.rst                  |    2 +-
 docs/examples/using_urlparameters.rst              |   15 +-
 docs/intro.rst                                     |   10 +-
 docs/modules/adapters/asyncio.rst                  |    9 +
 docs/version_history.rst                           |   86 +-
 .../{tmp.py => asynchronous_publisher_example.py}  |  272 ++--
 examples/direct_reply_to.py                        |   80 +
 examples/heatbeat_and_blocked_timeouts.py          |   48 +
 examples/send.py                                   |    6 +-
 examples/twisted_service.py                        |    2 +-
 nose.cfg                                           |    3 -
 pika/__init__.py                                   |    2 +-
 pika/adapters/__init__.py                          |   17 +-
 pika/adapters/asyncio_connection.py                |  221 +++
 pika/adapters/base_connection.py                   |  175 ++-
 pika/adapters/blocking_connection.py               |  321 ++--
 pika/adapters/libev_connection.py                  |   43 +-
 pika/adapters/select_connection.py                 |  865 +++++++---
 pika/adapters/tornado_connection.py                |    9 +-
 pika/adapters/twisted_connection.py                |   21 +-
 pika/channel.py                                    |  568 ++++---
 pika/compat.py                                     |   35 +-
 pika/connection.py                                 | 1649 +++++++++++++-------
 pika/credentials.py                                |   16 +
 pika/exceptions.py                                 |   26 +-
 pika/heartbeat.py                                  |   13 +-
 pika/spec.py                                       |   21 +-
 pylintrc                                           |  391 +++++
 setup.cfg                                          |    8 +
 setup.py                                           |    5 +-
 test-requirements.txt                              |    2 +-
 tests/acceptance/async_adapter_tests.py            |  190 ++-
 tests/acceptance/async_test_base.py                |  159 +-
 tests/acceptance/blocking_adapter_test.py          |  328 +++-
 tests/acceptance/enforce_one_basicget_test.py      |   32 +
 tests/acceptance/forward_server.py                 |  238 +--
 tests/acceptance/test_utils.py                     |   73 +
 tests/unit/base_connection_tests.py                |   48 +
 tests/unit/blocking_channel_tests.py               |   24 +-
 tests/unit/blocking_connection_tests.py            |  164 +-
 tests/unit/channel_tests.py                        |  635 +++++---
 tests/unit/connection_parameters_tests.py          |  642 ++++++++
 tests/unit/connection_tests.py                     |  851 +++++++---
 tests/unit/connection_timeout_tests.py             |  149 +-
 ...r_tests.py => content_frame_assembler_tests.py} |   10 +-
 tests/unit/credentials_tests.py                    |  110 ++
 tests/unit/heartbeat_tests.py                      |   21 +-
 tests/unit/parameter_tests.py                      |   69 -
 tests/unit/select_connection_ioloop_tests.py       |  314 +++-
 tests/unit/tornado_tests.py                        |    5 +-
 tests/unit/twisted_tests.py                        |   36 +
 utils/codegen.py                                   |   29 +-
 82 files changed, 7468 insertions(+), 2456 deletions(-)
 create mode 100644 CONTRIBUTING.md
 create mode 100644 appveyor.yml
 create mode 100644 debian/clean
 delete mode 100644 debian/patches/0001-Fix-the-channel-tests.patch
 delete mode 100644 debian/patches/0002-Make-the-test-more-reliable-in-Python-3.5.patch
 delete mode 100644 debian/patches/series
 create mode 100644 debian/source/options
 copy docs/examples/{tornado_consumer.rst => asyncio_consumer.rst} (95%)
 create mode 100644 docs/examples/direct_reply_to.rst
 create mode 100644 docs/examples/heartbeat_and_blocked_timeouts.rst
 create mode 100644 docs/examples/tls_mutual_authentication.rst
 create mode 100644 docs/examples/tls_server_uathentication.rst
 create mode 100644 docs/modules/adapters/asyncio.rst
 rename examples/{tmp.py => asynchronous_publisher_example.py} (82%)
 create mode 100644 examples/direct_reply_to.py
 create mode 100644 examples/heatbeat_and_blocked_timeouts.py
 delete mode 100644 nose.cfg
 create mode 100644 pika/adapters/asyncio_connection.py
 create mode 100644 pylintrc
 create mode 100644 tests/acceptance/enforce_one_basicget_test.py
 create mode 100644 tests/acceptance/test_utils.py
 create mode 100644 tests/unit/connection_parameters_tests.py
 rename tests/unit/{content_frame_dispatcher_tests.py => content_frame_assembler_tests.py} (95%)
 delete mode 100644 tests/unit/parameter_tests.py
 create mode 100644 tests/unit/twisted_tests.py

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



More information about the Python-modules-commits mailing list