[Python-modules-commits] [aioredis] branch master updated (21abbd3 -> 0af6fea)

Piotr Ożarowski piotr at moszumanska.debian.org
Wed Dec 21 11:31:34 UTC 2016


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

piotr pushed a change to branch master
in repository aioredis.

      from  21abbd3   disable tests (they're missing in the tarball)
       new  691f918   Import aioredis_0.2.9.orig.tar.gz
       new  289fafa   record new upstream branch created by importing aioredis_0.2.9.orig.tar.gz and merge it
       new  ee2945f   New upstream release
       new  a263d78   enable tests, they're un the tarball now
       new  f04574c   disable test_global_loop for now
       new  e3e5a53   remove .cache directory in clean target
       new  0af6fea   mention tests in changelog

The 7 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:
 CHANGES.txt                            |   26 +
 MANIFEST.in                            |    5 +-
 PKG-INFO                               |   32 +-
 README.rst                             |    4 +-
 aioredis.egg-info/PKG-INFO             |   32 +-
 aioredis.egg-info/SOURCES.txt          |   51 +-
 aioredis/__init__.py                   |    2 +-
 aioredis/commands/generic.py           |   11 +-
 aioredis/commands/pubsub.py            |    5 +-
 aioredis/commands/server.py            |   21 +-
 aioredis/pool.py                       |   28 +-
 debian/.git-dpm                        |   14 +-
 debian/changelog                       |    7 +
 debian/control                         |    2 +
 debian/rules                           |    7 +-
 docs/_build/man/aioredis.1             | 4047 ++++++++++++++++++++++++++++++++
 docs/api_reference.rst                 |  541 +++++
 docs/devel.rst                         |  232 ++
 docs/examples.rst                      |   57 +
 docs/glossary.rst                      |   37 +
 docs/index.rst                         |   83 +
 docs/mixins.rst                        |  227 ++
 docs/releases.rst                      |   15 +
 docs/start.rst                         |  163 ++
 examples/commands.py                   |   22 +
 examples/connection.py                 |   30 +
 examples/pipeline.py                   |   50 +
 examples/pool.py                       |   24 +
 examples/pool_pubsub.py                |   71 +
 examples/pubsub.py                     |   37 +
 examples/pubsub2.py                    |   59 +
 examples/python_3.5_iscan.py           |   52 +
 examples/python_3.5_pool.py            |   33 +
 examples/scan.py                       |   28 +
 examples/transaction.py                |   26 +
 examples/transaction2.py               |   25 +
 tests/_testutil.old.py                 |  251 ++
 tests/coerced_keys_dict_test.py        |   55 +
 tests/conftest.py                      |  413 ++++
 tests/connection_commands_test.py      |   64 +
 tests/connection_test.py               |  367 +++
 tests/encode_command_test.py           |   55 +
 tests/generic_commands_test.py         |  602 +++++
 tests/hash_commands_test.py            |  432 ++++
 tests/hyperloglog_commands_test.py     |  102 +
 tests/list_commands_test.py            |  559 +++++
 tests/multi_exec_test.py               |   44 +
 tests/pool_test.py                     |  411 ++++
 tests/pubsub_commands_test.py          |  265 +++
 tests/py35_generic_commands_test.py    |   46 +
 tests/py35_hash_commands_test.py       |   53 +
 tests/py35_pool_test.py                |   23 +
 tests/py35_pubsub_commands_test.py     |   23 +
 tests/py35_set_commands_test.py        |   49 +
 tests/py35_sorted_set_commands_test.py |   42 +
 tests/reconnect_test.py                |   40 +
 tests/scripting_commands_test.py       |  126 +
 tests/server_commands_test.py          |  184 ++
 tests/set_commands_test.py             |  435 ++++
 tests/sorted_set_commands_test.py      |  627 +++++
 tests/ssl_test.py                      |   32 +
 tests/string_commands_test.py          |  680 ++++++
 tests/task_cancellation_test.py        |   21 +
 tests/transaction_commands_test.py     |  241 ++
 64 files changed, 12309 insertions(+), 39 deletions(-)
 create mode 100644 docs/_build/man/aioredis.1
 create mode 100644 docs/api_reference.rst
 create mode 100644 docs/devel.rst
 create mode 100644 docs/examples.rst
 create mode 100644 docs/glossary.rst
 create mode 100644 docs/index.rst
 create mode 100644 docs/mixins.rst
 create mode 100644 docs/releases.rst
 create mode 100644 docs/start.rst
 create mode 100644 examples/commands.py
 create mode 100644 examples/connection.py
 create mode 100644 examples/pipeline.py
 create mode 100644 examples/pool.py
 create mode 100644 examples/pool_pubsub.py
 create mode 100644 examples/pubsub.py
 create mode 100644 examples/pubsub2.py
 create mode 100644 examples/python_3.5_iscan.py
 create mode 100644 examples/python_3.5_pool.py
 create mode 100644 examples/scan.py
 create mode 100644 examples/transaction.py
 create mode 100644 examples/transaction2.py
 create mode 100644 tests/_testutil.old.py
 create mode 100644 tests/coerced_keys_dict_test.py
 create mode 100644 tests/conftest.py
 create mode 100644 tests/connection_commands_test.py
 create mode 100644 tests/connection_test.py
 create mode 100644 tests/encode_command_test.py
 create mode 100644 tests/generic_commands_test.py
 create mode 100644 tests/hash_commands_test.py
 create mode 100644 tests/hyperloglog_commands_test.py
 create mode 100644 tests/list_commands_test.py
 create mode 100644 tests/multi_exec_test.py
 create mode 100644 tests/pool_test.py
 create mode 100644 tests/pubsub_commands_test.py
 create mode 100644 tests/py35_generic_commands_test.py
 create mode 100644 tests/py35_hash_commands_test.py
 create mode 100644 tests/py35_pool_test.py
 create mode 100644 tests/py35_pubsub_commands_test.py
 create mode 100644 tests/py35_set_commands_test.py
 create mode 100644 tests/py35_sorted_set_commands_test.py
 create mode 100644 tests/reconnect_test.py
 create mode 100644 tests/scripting_commands_test.py
 create mode 100644 tests/server_commands_test.py
 create mode 100644 tests/set_commands_test.py
 create mode 100644 tests/sorted_set_commands_test.py
 create mode 100644 tests/ssl_test.py
 create mode 100644 tests/string_commands_test.py
 create mode 100644 tests/task_cancellation_test.py
 create mode 100644 tests/transaction_commands_test.py

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



More information about the Python-modules-commits mailing list