[Python-modules-commits] [python-tornado] branch master updated (1aa7430 -> da699cb)

Ondřej Nový onovy at moszumanska.debian.org
Fri May 12 14:52:09 UTC 2017


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

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

      from  1aa7430   releasing package python-tornado version 4.4.3-1
       new  48d52eb   record new upstream branch created by importing python-tornado_4.5.1.orig.tar.gz
       new  1f987a3   Import python-tornado_4.5.1.orig.tar.gz
       new  e420891   Disable domain tests to prevent internet access during build
       new  177428d   ignore userwarning in tests
       new  50e3471   like travis buildd are often slow so skip the same tests
       new  0ee0b38   Ignore ENOPROTOOPT errors from SO_REUSEADDR or SO_ERROR on AF_UNIX sockets, for
       new  94ef97f   remove dependance on certifi
       new  1796ee6   skip UnixSocketTest on hurd, as unix sockets with SO_REUSEADDR are not supported there
       new  7c7251b   Use local objects.inv for intersphinx mapping
       new  320e29b   merge patched into master
       new  75de967   New upstream release
       new  ec03d16   d/copyright: Bump my copyright year
       new  8d29c9a   d/copyright: Adjust for new upstream release
       new  da699cb   releasing package python-tornado version 4.5.1-1

The 14 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:
 .travis.yml                                        |  31 +-
 MANIFEST.in                                        |   1 +
 appveyor.yml                                       |  16 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   9 +
 debian/copyright                                   |   4 +-
 ...local-objects.inv-for-intersphinx-mapping.patch |   8 +-
 debian/patches/disable-domain-tests.patch          |   4 +-
 debian/patches/fix-ftbfs-on-hurd.patch             |   6 +-
 debian/patches/ignoreuserwarning.patch             |   6 +-
 debian/patches/skip-timing-tests.patch             |   4 +-
 debian/patches/sockopt.patch                       |  10 +-
 debian/patches/without-certifi.patch               |   8 +-
 demos/chat/static/chat.js                          |   9 +-
 demos/chat/templates/index.html                    |   4 +-
 demos/file_upload/file_receiver.py                 |  63 +++
 demos/file_upload/file_uploader.py                 | 114 ++++
 demos/tcpecho/README.md                            |  30 +
 demos/tcpecho/client.py                            |  23 +
 demos/tcpecho/server.py                            |  34 ++
 demos/websocket/static/chat.js                     |   4 +-
 demos/websocket/templates/index.html               |   2 +-
 docs/conf.py                                       |  17 +-
 docs/gen.rst                                       |   2 +
 docs/guide/coroutines.rst                          |  28 +-
 docs/guide/structure.rst                           |   6 +-
 docs/httpclient.rst                                |   8 +
 docs/index.rst                                     |  36 +-
 docs/locks.rst                                     |  10 +-
 docs/releases.rst                                  |   2 +
 docs/releases/v2.3.0.rst                           |   2 +-
 docs/releases/v3.2.0.rst                           |   8 +-
 docs/releases/v4.1.0.rst                           |   2 +-
 docs/releases/v4.5.0.rst                           | 231 ++++++++
 docs/releases/v4.5.1.rst                           |  15 +
 docs/routing.rst                                   |   5 +
 docs/web.rst                                       |  16 +-
 docs/webframework.rst                              |   1 +
 docs/websocket.rst                                 |   1 +
 maint/circlerefs/circlerefs.py                     | 100 ++++
 maint/requirements.txt                             |  62 +-
 maint/scripts/custom_fixers/fix_future_imports.py  |   3 +-
 maint/test/cython/tox.ini                          |   3 +-
 maint/vm/README                                    |   4 +-
 maint/vm/ubuntu10.04/Vagrantfile                   |   9 -
 maint/vm/ubuntu10.04/setup.sh                      |  43 --
 maint/vm/ubuntu10.04/tox.ini                       |  14 -
 setup.py                                           |   4 +-
 tornado/__init__.py                                |   6 +-
 tornado/_locale_data.py                            |   2 +-
 tornado/auth.py                                    |  25 +-
 tornado/autoreload.py                              |   9 +-
 tornado/concurrent.py                              |  19 +-
 tornado/curl_httpclient.py                         |  14 +-
 tornado/escape.py                                  |   6 +-
 tornado/gen.py                                     |  69 ++-
 tornado/http1connection.py                         |   7 +-
 tornado/httpclient.py                              |  47 +-
 tornado/httpserver.py                              | 113 ++--
 tornado/httputil.py                                |  41 +-
 tornado/ioloop.py                                  |  67 +--
 tornado/iostream.py                                | 236 ++++----
 tornado/locale.py                                  |   8 +-
 tornado/locks.py                                   |   2 +-
 tornado/log.py                                     |  83 ++-
 tornado/netutil.py                                 |   6 +-
 tornado/options.py                                 |   2 +-
 tornado/platform/asyncio.py                        |   5 +-
 tornado/platform/auto.py                           |   2 +-
 tornado/platform/caresresolver.py                  |   2 +-
 tornado/platform/common.py                         |  25 +-
 tornado/platform/epoll.py                          |   2 +-
 tornado/platform/interface.py                      |   3 +-
 tornado/platform/kqueue.py                         |   2 +-
 tornado/platform/posix.py                          |   8 +-
 tornado/platform/select.py                         |   2 +-
 tornado/platform/twisted.py                        |   3 +-
 tornado/platform/windows.py                        |   2 +-
 tornado/process.py                                 |   8 +-
 tornado/queues.py                                  |  12 +-
 tornado/routing.py                                 | 625 +++++++++++++++++++++
 tornado/simple_httpclient.py                       |   7 +-
 tornado/stack_context.py                           |   4 +-
 tornado/tcpclient.py                               |  55 +-
 tornado/tcpserver.py                               |  28 +-
 tornado/template.py                                |   6 +-
 tornado/test/__main__.py                           |   2 +-
 tornado/test/asyncio_test.py                       |  12 +-
 tornado/test/auth_test.py                          |   7 +-
 tornado/test/concurrent_test.py                    |  24 +-
 tornado/test/curl_httpclient_test.py               |   2 +-
 tornado/test/escape_test.py                        |   2 +-
 tornado/test/gen_test.py                           |  97 +++-
 tornado/test/gettext_translations/extract_me.py    |   2 +-
 tornado/test/http1connection_test.py               |   2 +-
 tornado/test/httpclient_test.py                    |   2 +-
 tornado/test/httpserver_test.py                    |  34 +-
 tornado/test/httputil_test.py                      |  41 +-
 tornado/test/import_test.py                        |   4 +-
 tornado/test/ioloop_test.py                        |  22 +-
 tornado/test/iostream_test.py                      |  47 +-
 tornado/test/locale_test.py                        |   2 +-
 tornado/test/locks_test.py                         |   2 +-
 tornado/test/log_test.py                           |   2 +-
 tornado/test/netutil_test.py                       |   2 +-
 tornado/test/options_test.py                       |   4 +-
 tornado/test/process_test.py                       |  27 +-
 tornado/test/queues_test.py                        |   2 +-
 tornado/test/resolve_test_helper.py                |   2 +-
 tornado/test/routing_test.py                       | 224 ++++++++
 tornado/test/runtests.py                           |   7 +-
 tornado/test/simple_httpclient_test.py             |   2 +-
 tornado/test/stack_context_test.py                 |   3 +-
 tornado/test/tcpclient_test.py                     |  43 +-
 tornado/test/tcpserver_test.py                     |  33 +-
 tornado/test/template_test.py                      |  11 +-
 tornado/test/testing_test.py                       |   2 +-
 tornado/test/twisted_test.py                       |   2 +-
 tornado/test/util.py                               |  20 +-
 tornado/test/util_test.py                          |   9 +-
 tornado/test/web_test.py                           |  57 +-
 tornado/test/websocket_test.py                     | 224 +++++++-
 tornado/test/windows_test.py                       |   2 +
 tornado/test/wsgi_test.py                          |   6 +-
 tornado/testing.py                                 |  13 +-
 tornado/util.py                                    |  44 +-
 tornado/web.py                                     | 484 ++++++++--------
 tornado/websocket.py                               | 314 ++++++++---
 tornado/wsgi.py                                    |   2 +-
 tox.ini                                            |  19 +-
 130 files changed, 3489 insertions(+), 974 deletions(-)
 create mode 100644 demos/file_upload/file_receiver.py
 create mode 100644 demos/file_upload/file_uploader.py
 create mode 100644 demos/tcpecho/README.md
 create mode 100644 demos/tcpecho/client.py
 create mode 100644 demos/tcpecho/server.py
 create mode 100644 docs/releases/v4.5.0.rst
 create mode 100644 docs/releases/v4.5.1.rst
 create mode 100644 docs/routing.rst
 create mode 100644 maint/circlerefs/circlerefs.py
 delete mode 100644 maint/vm/ubuntu10.04/Vagrantfile
 delete mode 100644 maint/vm/ubuntu10.04/setup.sh
 delete mode 100644 maint/vm/ubuntu10.04/tox.ini
 create mode 100644 tornado/routing.py
 create mode 100644 tornado/test/routing_test.py

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



More information about the Python-modules-commits mailing list