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

Jan Dittberner jandd at moszumanska.debian.org
Wed Dec 30 13:39:29 UTC 2015


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

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

      from  9400754   Imported Upstream version 0.9.14
       new  02aaec8   Import python-pika_0.10.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                                       |    5 +
 .codeclimate.yml                                   |    8 +
 .travis.yml                                        |   22 +-
 CHANGELOG.rst                                      |  591 ++++
 LICENSE                                            |  362 +--
 README.rst                                         |   42 +-
 docs/conf.py                                       |   11 +-
 docs/contributors.rst                              |  144 +-
 docs/examples/asynchronous_consumer_example.rst    |  160 +-
 docs/examples/asynchronous_publisher_example.rst   |  167 +-
 docs/examples/blocking_publish_mandatory.rst       |    3 +
 docs/faq.rst                                       |   12 -
 docs/index.rst                                     |   21 +-
 docs/intro.rst                                     |    2 -
 docs/modules/adapters/asyncore.rst                 |    6 -
 docs/modules/adapters/index.rst                    |    1 -
 docs/version_history.rst                           |  369 +++
 examples/twisted_service.py                        |  208 ++
 pika/__init__.py                                   |    5 +-
 pika/adapters/__init__.py                          |    5 -
 pika/adapters/asyncore_connection.py               |  156 -
 pika/adapters/base_connection.py                   |  212 +-
 pika/adapters/blocking_connection.py               | 3105 ++++++++++++++------
 pika/adapters/libev_connection.py                  |   50 +-
 pika/adapters/select_connection.py                 |  673 +++--
 pika/adapters/tornado_connection.py                |   14 +-
 pika/adapters/twisted_connection.py                |   35 +-
 pika/callback.py                                   |   82 +-
 pika/channel.py                                    |  369 ++-
 pika/compat.py                                     |  105 +
 pika/connection.py                                 |  234 +-
 pika/credentials.py                                |   13 +-
 pika/data.py                                       |  168 +-
 pika/exceptions.py                                 |  103 +-
 pika/frame.py                                      |   26 +-
 pika/heartbeat.py                                  |    1 +
 pika/spec.py                                       | 1008 ++-----
 setup.cfg                                          |    2 +
 setup.py                                           |   21 +-
 test-requirements.pip => test-requirements.txt     |    2 +-
 ...ado_adapter_tests.py => async_adapter_tests.py} |  179 +-
 tests/acceptance/async_test_base.py                |  102 +-
 tests/acceptance/asyncore_adapter_tests.py         |  355 ---
 tests/acceptance/blocking_adapter_test.py          | 2298 +++++++++++++++
 tests/acceptance/forward_server.py                 |  532 ++++
 tests/acceptance/libev_adapter_tests.py            |  382 ---
 tests/acceptance/select_adapter_tests.py           |  355 ---
 tests/unit/amqp_object_tests.py                    |    9 +-
 tests/unit/base_connection_tests.py                |   14 +-
 tests/unit/blocking_channel_tests.py               |   47 +-
 tests/unit/blocking_connection_tests.py            |  206 ++
 tests/unit/callback_tests.py                       |  116 +-
 tests/unit/channel_tests.py                        |  370 +--
 tests/unit/connection_tests.py                     |  109 +-
 tests/unit/connection_timeout_tests.py             |   16 +-
 tests/unit/content_frame_dispatcher_tests.py       |   49 +-
 tests/unit/credentials_tests.py                    |   15 +-
 tests/unit/data_tests.py                           |   63 +-
 tests/unit/exceptions_test.py                      |    7 +-
 tests/unit/frame_tests.py                          |   35 +-
 tests/unit/heartbeat_tests.py                      |   21 +-
 tests/unit/parameter_tests.py                      |   26 +-
 tests/unit/select_connection_ioloop_tests.py       |  290 ++
 tests/unit/tornado_tests.py                        |    5 +-
 tox.ini                                            |   15 -
 utils/codegen.py                                   |  102 +-
 66 files changed, 9349 insertions(+), 4892 deletions(-)
 create mode 100644 .checkignore
 create mode 100644 .codeclimate.yml
 create mode 100644 CHANGELOG.rst
 delete mode 100644 docs/modules/adapters/asyncore.rst
 create mode 100644 examples/twisted_service.py
 delete mode 100644 pika/adapters/asyncore_connection.py
 create mode 100644 pika/compat.py
 create mode 100644 setup.cfg
 rename test-requirements.pip => test-requirements.txt (67%)
 rename tests/acceptance/{tornado_adapter_tests.py => async_adapter_tests.py} (67%)
 delete mode 100644 tests/acceptance/asyncore_adapter_tests.py
 create mode 100644 tests/acceptance/blocking_adapter_test.py
 create mode 100644 tests/acceptance/forward_server.py
 delete mode 100644 tests/acceptance/libev_adapter_tests.py
 delete mode 100644 tests/acceptance/select_adapter_tests.py
 create mode 100644 tests/unit/blocking_connection_tests.py
 create mode 100644 tests/unit/select_connection_ioloop_tests.py
 delete mode 100644 tox.ini

-- 
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