[Python-modules-commits] [aioredis] branch upstream updated (208df42 -> f4af345)
Piotr Ożarowski
piotr at moszumanska.debian.org
Thu Jul 20 18:10:18 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 208df42 Import aioredis_0.3.1.orig.tar.gz
new f4af345 Import aioredis_1.0.0~b2.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 | 304 +++--------
CONTRIBUTORS.txt | 6 +
CHANGES.txt => HISTORY.rst | 141 +++--
LICENSE | 2 +-
Makefile | 111 ++++
PKG-INFO | 325 ++++-------
README.rst | 18 +-
aioredis.egg-info/PKG-INFO | 325 ++++-------
aioredis.egg-info/SOURCES.txt | 37 +-
aioredis.egg-info/requires.txt | 1 +
aioredis/__init__.py | 54 +-
aioredis/commands/__init__.py | 138 ++---
aioredis/commands/cluster.py | 26 +-
aioredis/commands/generic.py | 93 +++-
aioredis/commands/geo.py | 12 +-
aioredis/commands/hash.py | 33 +-
aioredis/commands/hyperloglog.py | 6 +-
aioredis/commands/list.py | 39 +-
aioredis/commands/pubsub.py | 24 +-
aioredis/commands/scripting.py | 13 +-
aioredis/commands/server.py | 91 ++--
aioredis/commands/set.py | 30 +-
aioredis/commands/sorted_set.py | 82 ++-
aioredis/commands/string.py | 53 +-
aioredis/commands/transaction.py | 35 +-
aioredis/connection.py | 74 ++-
aioredis/errors.py | 15 +
aioredis/locks.py | 44 ++
aioredis/log.py | 12 +
aioredis/parser.py | 164 ++++++
aioredis/pool.py | 248 +++++++--
aioredis/pubsub.py | 35 +-
aioredis/sentinel/__init__.py | 9 +
aioredis/sentinel/commands.py | 194 +++++++
aioredis/sentinel/pool.py | 473 +++++++++++++++++
aioredis/streams.py | 53 ++
aioredis/util.py | 15 +-
docs/Makefile | 183 +++++++
docs/_build/man/aioredis.1 | 857 +++++++++++++++++++++++-------
docs/_templates/layout.html | 23 +
docs/api_reference.rst | 216 ++++++--
docs/conf.py | 294 ++++++++++
docs/examples.rst | 8 +
docs/index.rst | 9 +-
docs/mixins.rst | 4 +
docs/requirements.txt | 4 +
docs/sentinel.rst | 31 ++
docs/spelling_wordlist.txt | 132 +++++
examples/commands.py | 37 +-
examples/connection.py | 33 +-
examples/pool.py | 27 +-
examples/pool2.py | 10 +-
examples/pool_pubsub.py | 18 +-
examples/pubsub.py | 42 +-
examples/pubsub2.py | 2 +-
examples/py34/pool.py | 6 +-
examples/py34/pool_pubsub.py | 20 +-
examples/py34/pubsub2.py | 2 +-
examples/redis-sentinel.conf | 9 +
examples/redis.conf | 7 +
examples/scan.py | 26 +-
examples/sentinel.py | 19 +
examples/transaction.py | 33 +-
examples/transaction2.py | 1 +
setup.cfg | 2 +-
setup.py | 6 +-
tests/conftest.py | 442 +++++++++++----
tests/connection_commands_test.py | 53 +-
tests/connection_test.py | 145 ++++-
tests/generic_commands_test.py | 269 +++++++---
tests/hash_commands_test.py | 12 +-
tests/integrational/integrational_test.py | 108 ++++
tests/locks_test.py | 33 ++
tests/log_test.py | 14 -
tests/multi_exec_test.py | 5 +-
tests/pool_test.py | 191 +++++--
tests/pubsub_commands_test.py | 30 +-
tests/pubsub_receiver_test.py | 9 +-
tests/py35_pool_test.py | 4 +-
tests/py35_pubsub_receiver_test.py | 29 +-
tests/pyreader_test.py | 234 ++++++++
tests/reconnect_test.py | 40 --
tests/requirements.txt | 7 +
tests/scripting_commands_test.py | 2 +-
tests/sentinel_commands_test.py | 244 +++++++++
tests/sentinel_failover_test.py | 190 +++++++
tests/server_commands_test.py | 153 +++++-
tests/set_commands_test.py | 2 -
tests/sorted_set_commands_test.py | 66 ++-
tests/ssl/Makefile | 15 +
tests/ssl/cafile.crt | 21 +
tests/ssl/cert.pem | 49 ++
tests/ssl/dhparam.pem | 8 +
tests/ssl_test.py | 4 +-
tests/string_commands_test.py | 65 ++-
tests/task_cancellation.py | 34 --
tests/transaction_commands_test.py | 26 +-
102 files changed, 6144 insertions(+), 1932 deletions(-)
create mode 100644 .appveyor.yml
create mode 100644 .bumpversion.cfg
create mode 100644 .gitignore
create mode 100644 .pyup.yml
create mode 100644 .travis.yml
copy CHANGES.txt => HISTORY.rst (78%)
create mode 100644 Makefile
create mode 100644 aioredis/locks.py
create mode 100644 aioredis/parser.py
create mode 100644 aioredis/sentinel/__init__.py
create mode 100644 aioredis/sentinel/commands.py
create mode 100644 aioredis/sentinel/pool.py
create mode 100644 aioredis/streams.py
create mode 100644 docs/Makefile
create mode 100644 docs/_templates/layout.html
create mode 100644 docs/conf.py
create mode 100644 docs/requirements.txt
create mode 100644 docs/sentinel.rst
create mode 100644 docs/spelling_wordlist.txt
create mode 100644 examples/redis-sentinel.conf
create mode 100644 examples/redis.conf
create mode 100644 examples/sentinel.py
create mode 100644 tests/integrational/integrational_test.py
create mode 100644 tests/locks_test.py
delete mode 100644 tests/log_test.py
create mode 100644 tests/pyreader_test.py
delete mode 100644 tests/reconnect_test.py
create mode 100644 tests/requirements.txt
create mode 100644 tests/sentinel_commands_test.py
create mode 100644 tests/sentinel_failover_test.py
create mode 100644 tests/ssl/Makefile
create mode 100644 tests/ssl/cafile.crt
create mode 100644 tests/ssl/cert.pem
create mode 100644 tests/ssl/dhparam.pem
delete 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