[Python-modules-commits] [python-pika] branch upstream updated (02aaec8 -> 60eafcb)

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


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

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

      from  02aaec8   Import python-pika_0.10.0.orig.tar.gz
       new  60eafcb   Import python-pika_0.11.0.orig.tar.gz

The 1 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 +
 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                        |  658 +++++---
 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                      |   28 +-
 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 +-
 73 files changed, 7460 insertions(+), 2375 deletions(-)
 create mode 100644 CONTRIBUTING.md
 create mode 100644 appveyor.yml
 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