[Python-modules-commits] [aioredis] branch upstream updated (f4af345 -> dda1067)
Piotr Ożarowski
piotr at moszumanska.debian.org
Thu Nov 30 09:53:48 UTC 2017
This is an automated email from the git hooks/post-receive script.
piotr pushed a change to branch upstream
in repository aioredis.
from f4af345 Import aioredis_1.0.0~b2.orig.tar.gz
new dda1067 Import aioredis_1.0.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:
.appveyor.yml | 29 -
.bumpversion.cfg | 9 -
.gitignore | 63 -
.pyup.yml | 3 -
.travis.yml | 72 --
CHANGES.txt | 80 +-
CONTRIBUTORS.txt | 45 +-
HISTORY.rst | 320 -----
Makefile | 111 --
PKG-INFO | 112 +-
README.rst | 25 +-
aioredis.egg-info/PKG-INFO | 112 +-
aioredis.egg-info/SOURCES.txt | 47 +-
aioredis/__init__.py | 17 +-
aioredis/abc.py | 7 +-
aioredis/commands/__init__.py | 114 +-
aioredis/commands/generic.py | 22 +-
aioredis/commands/geo.py | 12 +-
aioredis/commands/hash.py | 31 +-
aioredis/commands/pubsub.py | 7 +-
aioredis/commands/server.py | 2 +-
aioredis/commands/set.py | 25 +-
aioredis/commands/sorted_set.py | 78 +-
aioredis/commands/transaction.py | 75 +-
aioredis/connection.py | 153 ++-
aioredis/errors.py | 38 +-
aioredis/locks.py | 5 +-
aioredis/pool.py | 185 ++-
aioredis/pubsub.py | 120 +-
aioredis/sentinel/commands.py | 34 +-
aioredis/sentinel/pool.py | 128 +-
aioredis/stream.py | 96 ++
aioredis/streams.py | 53 -
aioredis/util.py | 185 +--
docs/Makefile | 183 ---
docs/_build/man/aioredis.1 | 1887 +++++++++++++++++++----------
docs/_templates/layout.html | 23 -
docs/api_reference.rst | 219 +++-
docs/conf.py | 294 -----
docs/examples.rst | 57 -
docs/index.rst | 16 +-
docs/migration.rst | 238 ++++
docs/mixins.rst | 105 +-
docs/mpsc.rst | 4 +-
docs/requirements.txt | 4 -
docs/sentinel.rst | 251 +++-
docs/spelling_wordlist.txt | 132 --
docs/start.rst | 4 +-
examples/commands.py | 4 +-
examples/connection.py | 2 +-
examples/iscan.py | 2 +-
examples/pipeline.py | 2 +-
examples/pool.py | 2 +-
examples/pool2.py | 2 +-
examples/pool_pubsub.py | 4 +-
examples/pubsub.py | 4 +-
examples/pubsub2.py | 4 +-
examples/py34/commands.py | 22 -
examples/py34/connection.py | 30 -
examples/py34/pipeline.py | 50 -
examples/py34/pool.py | 24 -
examples/py34/pool_pubsub.py | 75 --
examples/py34/pubsub.py | 37 -
examples/py34/pubsub2.py | 59 -
examples/py34/scan.py | 28 -
examples/py34/transaction.py | 27 -
examples/py34/transaction2.py | 25 -
examples/redis-sentinel.conf | 9 -
examples/redis.conf | 7 -
examples/scan.py | 2 +-
examples/transaction.py | 2 +-
examples/transaction2.py | 2 +-
setup.py | 12 +-
tests/conftest.py | 84 +-
tests/connection_commands_test.py | 63 +-
tests/connection_test.py | 359 +++---
tests/encode_command_test.py | 8 +
tests/errors_test.py | 18 +
tests/generic_commands_test.py | 614 +++++-----
tests/geo_commands_test.py | 128 +-
tests/hash_commands_test.py | 342 +++---
tests/hyperloglog_commands_test.py | 54 +-
tests/integration_test.py | 97 ++
tests/integrational/integrational_test.py | 108 --
tests/list_commands_test.py | 305 +++--
tests/locks_test.py | 19 +-
tests/multi_exec_test.py | 8 +-
tests/parse_url_test.py | 127 ++
tests/pool_test.py | 323 ++---
tests/pubsub_commands_test.py | 240 ++--
tests/pubsub_receiver_test.py | 173 ++-
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_pubsub_receiver_test.py | 56 -
tests/py35_set_commands_test.py | 49 -
tests/py35_sorted_set_commands_test.py | 42 -
tests/pyreader_test.py | 19 +-
tests/requirements.txt | 7 -
tests/scripting_commands_test.py | 82 +-
tests/sentinel_commands_test.py | 144 ++-
tests/sentinel_failover_test.py | 122 +-
tests/server_commands_test.py | 179 +--
tests/set_commands_test.py | 282 +++--
tests/sorted_set_commands_test.py | 627 ++++++----
tests/ssl/Makefile | 15 -
tests/ssl/cafile.crt | 21 -
tests/ssl/cert.pem | 49 -
tests/ssl/dhparam.pem | 8 -
tests/ssl_test.py | 20 +-
tests/stream_test.py | 52 +
tests/string_commands_test.py | 531 ++++----
tests/task_cancellation.py | 34 +
tests/task_cancellation_test.py | 8 +-
tests/transaction_commands_test.py | 174 +--
116 files changed, 6145 insertions(+), 5860 deletions(-)
delete mode 100644 .appveyor.yml
delete mode 100644 .bumpversion.cfg
delete mode 100644 .gitignore
delete mode 100644 .pyup.yml
delete mode 100644 .travis.yml
delete mode 100644 HISTORY.rst
delete mode 100644 Makefile
create mode 100644 aioredis/stream.py
delete mode 100644 aioredis/streams.py
delete mode 100644 docs/Makefile
delete mode 100644 docs/_templates/layout.html
delete mode 100644 docs/conf.py
create mode 100644 docs/migration.rst
delete mode 100644 docs/requirements.txt
delete mode 100644 docs/spelling_wordlist.txt
delete mode 100644 examples/py34/commands.py
delete mode 100644 examples/py34/connection.py
delete mode 100644 examples/py34/pipeline.py
delete mode 100644 examples/py34/pool.py
delete mode 100644 examples/py34/pool_pubsub.py
delete mode 100644 examples/py34/pubsub.py
delete mode 100644 examples/py34/pubsub2.py
delete mode 100644 examples/py34/scan.py
delete mode 100644 examples/py34/transaction.py
delete mode 100644 examples/py34/transaction2.py
delete mode 100644 examples/redis-sentinel.conf
delete mode 100644 examples/redis.conf
create mode 100644 tests/errors_test.py
create mode 100644 tests/integration_test.py
delete mode 100644 tests/integrational/integrational_test.py
create mode 100644 tests/parse_url_test.py
delete mode 100644 tests/py35_generic_commands_test.py
delete mode 100644 tests/py35_hash_commands_test.py
delete mode 100644 tests/py35_pool_test.py
delete mode 100644 tests/py35_pubsub_commands_test.py
delete mode 100644 tests/py35_pubsub_receiver_test.py
delete mode 100644 tests/py35_set_commands_test.py
delete mode 100644 tests/py35_sorted_set_commands_test.py
delete mode 100644 tests/requirements.txt
delete mode 100644 tests/ssl/Makefile
delete mode 100644 tests/ssl/cafile.crt
delete mode 100644 tests/ssl/cert.pem
delete mode 100644 tests/ssl/dhparam.pem
create mode 100644 tests/stream_test.py
create mode 100644 tests/task_cancellation.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