[Python-modules-commits] [python-motor] branch master updated (8047354 -> f35ff90)

Ondrej Novy onovy at debian.org
Tue Jan 16 14:35:24 UTC 2018


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

onovy pushed a change to branch master
in repository python-motor.

      from  8047354   Uploading to unstable
       new  0b0b62a   Import python-motor_1.2.0.orig.tar.gz
       new  42ff0a4   record new upstream branch created by importing python-motor_1.2.0.orig.tar.gz and merge it
       new  f792081   New upstream release
       new  dc57645   d/rules: Don't remove aiohttp and asyncio in Python 2 (fixed upstream)
       new  6c1a482   d/copyright: Bump my copyright year
       new  09f483e   Bump debhelper compat level to 11
       new  66d852d   Standards-Version is 4.1.3 now (no changes needed)
       new  475c785   debian/tests: Run tests on all Python versions
       new  f35ff90   releasing package python-motor version 1.2.0-1

The 9 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:
 .evergreen/config.yml                              | 871 +++++++++++++++++++++
 .evergreen/install-dependencies.sh                 |  19 +
 .evergreen/run-enterprise-auth-tests.sh            |  29 +
 .evergreen/run-tox.sh                              |  28 +
 .gitignore                                         |   1 +
 CONTRIBUTING.rst                                   |  20 +-
 README.rst                                         |   9 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  11 +
 debian/compat                                      |   2 +-
 debian/control                                     |   4 +-
 debian/copyright                                   |   2 +-
 debian/rules                                       |   4 -
 debian/tests/control.autodep8                      |  10 +-
 doc/api-asyncio/asyncio_motor_change_stream.rst    |   7 +
 doc/api-asyncio/index.rst                          |   1 +
 doc/api-tornado/index.rst                          |   1 +
 doc/api-tornado/motor_change_stream.rst            |   7 +
 doc/changelog.rst                                  |  48 ++
 doc/conf.py                                        |  21 +-
 doc/configuration.rst                              |   9 +
 doc/developer-guide.rst                            |  12 +-
 doc/docs-requirements.txt                          |   2 +
 doc/examples/aiohttp_gridfs_example.py             |   2 +
 doc/examples/index.rst                             |   2 +
 doc/examples/monitoring.rst                        |  91 +++
 doc/examples/monitoring_example.py                 | 132 ++++
 doc/examples/tailable-cursors.rst                  |   2 +-
 doc/examples/tornado_change_stream_example.py      | 110 +++
 doc/examples/tornado_change_stream_example.rst     |  54 ++
 .../tornado_change_stream_templates/index.html     |  51 ++
 doc/index.rst                                      |   1 +
 doc/mongo_extensions.py                            |  14 +-
 doc/motor_extensions.py                            |  35 +-
 doc/pydoctheme/static/pydoctheme.css               |   8 +
 doc/requirements.rst                               |  79 +-
 doc/tutorial-asyncio.rst                           |   6 +-
 doc/tutorial-tornado.rst                           |  33 +-
 motor/__init__.py                                  |  16 +-
 motor/{aiohttp.py => aiohttp/__init__.py}          |   5 +-
 motor/core.py                                      | 383 +++++++--
 motor/docstrings.py                                | 859 ++++++++++++++++++--
 motor/frameworks/asyncio/__init__.py               |  12 +-
 motor/frameworks/tornado/__init__.py               |  31 +-
 motor/metaprogramming.py                           |  21 +-
 motor/motor_asyncio.py                             |  12 +-
 motor/motor_gridfs.py                              |  43 +-
 motor/motor_py3_compat.py                          |   2 +-
 motor/motor_tornado.py                             |  24 +-
 setup.cfg                                          |   2 +
 setup.py                                           |  70 +-
 synchro/__init__.py                                |  39 +-
 synchro/synchrotest.py                             |  76 +-
 test/__init__.py                                   |  32 +-
 test/asyncio_tests/__init__.py                     |  27 +-
 test/asyncio_tests/test_aiohttp_gridfs.py          |  25 +-
 test/asyncio_tests/test_asyncio_await.py           |  17 +-
 test/asyncio_tests/test_asyncio_change_stream.py   | 140 ++++
 test/asyncio_tests/test_asyncio_client.py          |  45 +-
 test/asyncio_tests/test_asyncio_collection.py      |  54 +-
 test/asyncio_tests/test_asyncio_cursor.py          |  60 +-
 test/asyncio_tests/test_asyncio_database.py        |  11 +-
 test/asyncio_tests/test_asyncio_gridfs.py          |   2 +-
 test/asyncio_tests/test_asyncio_ipv6.py            |   5 +-
 test/asyncio_tests/test_asyncio_session.py         | 204 +++++
 test/asyncio_tests/test_asyncio_ssl.py             |  27 +-
 test/test_environment.py                           | 145 ++--
 test/tornado_tests/__init__.py                     |  89 +--
 test/tornado_tests/test_motor_await.py             |   5 +-
 test/tornado_tests/test_motor_change_stream.py     | 143 ++++
 test/tornado_tests/test_motor_client.py            |  54 +-
 test/tornado_tests/test_motor_collection.py        |  73 +-
 test/tornado_tests/test_motor_core.py              |  30 +-
 test/tornado_tests/test_motor_cursor.py            |  91 ++-
 test/tornado_tests/test_motor_database.py          |  22 +-
 test/tornado_tests/test_motor_gen.py               |  68 --
 test/tornado_tests/test_motor_gridfs.py            |  15 +-
 test/tornado_tests/test_motor_ipv6.py              |   5 +-
 test/tornado_tests/test_motor_replica_set.py       |   6 +-
 test/tornado_tests/test_motor_session.py           | 209 +++++
 test/tornado_tests/test_motor_son_manipulator.py   |   5 +-
 test/tornado_tests/test_motor_ssl.py               |  12 +-
 test/tornado_tests/test_motor_web.py               |  15 +-
 test/tornado_tests/test_test.py                    |  51 --
 test/utils.py                                      |  37 +-
 test/version.py                                    | 108 ++-
 tox.ini                                            |  75 +-
 87 files changed, 4139 insertions(+), 1115 deletions(-)
 create mode 100644 .evergreen/config.yml
 create mode 100644 .evergreen/install-dependencies.sh
 create mode 100644 .evergreen/run-enterprise-auth-tests.sh
 create mode 100755 .evergreen/run-tox.sh
 create mode 100644 doc/api-asyncio/asyncio_motor_change_stream.rst
 create mode 100644 doc/api-tornado/motor_change_stream.rst
 create mode 100644 doc/configuration.rst
 create mode 100644 doc/docs-requirements.txt
 create mode 100644 doc/examples/monitoring.rst
 create mode 100644 doc/examples/monitoring_example.py
 create mode 100644 doc/examples/tornado_change_stream_example.py
 create mode 100644 doc/examples/tornado_change_stream_example.rst
 create mode 100644 doc/examples/tornado_change_stream_templates/index.html
 rename motor/{aiohttp.py => aiohttp/__init__.py} (98%)
 create mode 100644 setup.cfg
 create mode 100644 test/asyncio_tests/test_asyncio_change_stream.py
 create mode 100644 test/asyncio_tests/test_asyncio_session.py
 create mode 100644 test/tornado_tests/test_motor_change_stream.py
 delete mode 100644 test/tornado_tests/test_motor_gen.py
 create mode 100644 test/tornado_tests/test_motor_session.py
 delete mode 100644 test/tornado_tests/test_test.py

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



More information about the Python-modules-commits mailing list