[Python-modules-commits] [python-motor] branch upstream updated (438d782 -> 0b0b62a)

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


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

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

      from  438d782   Import python-motor_1.1.orig.tar.gz
       new  0b0b62a   Import python-motor_1.2.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:
 .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 +-
 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 +-
 80 files changed, 4111 insertions(+), 1096 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