[Python-modules-commits] [python-tornado] branch master updated (3777164 -> 8284fc8)
Ondřej Nový
onovy at moszumanska.debian.org
Wed Jul 13 07:21:39 UTC 2016
This is an automated email from the git hooks/post-receive script.
onovy pushed a change to branch master
in repository python-tornado.
from 3777164 merge patched into master
new b65ace1 record new upstream branch created by importing python-tornado_4.4.0~b1.orig.tar.gz
new 79df192 Import python-tornado_4.4.0~b1.orig.tar.gz
new 4077934 use a domain that is more likely invalid
new 37c5072 ignore userwarning in tests
new 16f3fe7 like travis buildd are often slow so skip the same tests
new cf27022 Ignore ENOPROTOOPT errors from SO_REUSEADDR or SO_ERROR on AF_UNIX sockets, for
new 0e84d75 remove dependance on certifi
new 2998294 skip UnixSocketTest on hurd, as unix sockets with SO_REUSEADDR are not supported there
new dc51705 merge patched into master
new 263a613 New upstream release (Closes: #830859)
new d81b010 Rearranged lintian overrides for new release
new bc26126 Bumped required Python version to 2.7 and 3.3
new d85b1ce Added python-tornado-doc package with docs and examples
new 8284fc8 Enabled all but PIE hardening
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 | 61 ++++----
README.rst | 2 +-
codecov.yml | 3 +
debian/.git-dpm | 14 +-
debian/changelog | 7 +-
debian/control | 22 ++-
...suite-failure-when-sockets-is-not-defined.patch | 27 ----
debian/patches/domain-test.patch | 10 +-
debian/patches/fix-ftbfs-on-hurd.patch | 6 +-
debian/patches/ignoreuserwarning.patch | 6 +-
debian/patches/series | 1 -
debian/patches/skip-timing-tests.patch | 4 +-
debian/patches/sockopt.patch | 8 +-
debian/patches/without-certifi.patch | 28 ++--
debian/python-tornado-doc.doc-base | 9 ++
debian/{examples => python-tornado-doc.examples} | 0
debian/python-tornado-doc.links | 1 +
debian/python-tornado-doc.lintian-overrides | 12 ++
debian/python-tornado.lintian-overrides | 8 +-
debian/python3-tornado.lintian-overrides | 3 +-
debian/rules | 9 +-
demos/facebook/facebook.py | 2 +-
demos/websocket/chatdemo.py | 2 +-
demos/webspider/webspider.py | 2 +
docs/conf.py | 2 +-
docs/guide/async.rst | 2 +-
docs/guide/coroutines.rst | 2 +-
docs/guide/intro.rst | 6 +-
docs/index.rst | 15 +-
docs/releases.rst | 1 +
docs/releases/v4.2.0.rst | 2 +-
docs/releases/v4.4.0.rst | 95 +++++++++++++
docs/web.rst | 5 +
maint/requirements.in | 29 ++++
maint/requirements.txt | 66 ++++-----
maint/scripts/custom_fixers/fix_unicode_literal.py | 23 +--
maint/test/cython/tox.ini | 3 +-
maint/test/websocket/fuzzingclient.json | 8 +-
maint/test/websocket/run-client.sh | 3 +-
maint/test/websocket/run-server.sh | 14 +-
maint/test/websocket/tox.ini | 2 +-
maint/vm/ubuntu10.04/setup.sh | 2 -
maint/vm/ubuntu10.04/tox.ini | 12 +-
maint/vm/ubuntu12.04/setup.sh | 4 +-
maint/vm/ubuntu12.04/tox.ini | 6 +-
maint/vm/windows/bootstrap.py | 2 -
maint/vm/windows/tox.ini | 17 +--
setup.py | 12 +-
tornado/__init__.py | 4 +-
tornado/_locale_data.py | 133 ++++++++---------
tornado/auth.py | 38 +++--
tornado/autoreload.py | 4 +-
tornado/concurrent.py | 12 +-
tornado/curl_httpclient.py | 5 +-
tornado/escape.py | 37 +++--
tornado/gen.py | 31 ++--
tornado/http1connection.py | 35 +++--
tornado/httpclient.py | 28 ++--
tornado/httputil.py | 50 ++++---
tornado/ioloop.py | 35 ++---
tornado/iostream.py | 8 +-
tornado/locale.py | 14 +-
tornado/locks.py | 6 +-
tornado/log.py | 12 +-
tornado/netutil.py | 27 ++--
tornado/options.py | 18 ++-
tornado/platform/asyncio.py | 11 +-
tornado/platform/auto.py | 9 +-
tornado/platform/auto.pyi | 4 +
tornado/platform/caresresolver.py | 10 +-
tornado/platform/interface.py | 3 +
tornado/platform/twisted.py | 39 ++---
tornado/platform/windows.py | 6 +-
tornado/process.py | 18 ++-
tornado/queues.py | 4 +-
tornado/simple_httpclient.py | 39 +++--
tornado/speedups.pyi | 1 +
tornado/tcpserver.py | 11 +-
tornado/template.py | 19 +--
tornado/test/auth_test.py | 19 ++-
tornado/test/concurrent_test.py | 4 +-
tornado/test/curl_httpclient_test.py | 16 ++-
tornado/test/escape_test.py | 114 +++++++--------
tornado/test/gen_test.py | 13 ++
tornado/test/http1connection_test.py | 61 ++++++++
tornado/test/httpclient_test.py | 36 ++++-
tornado/test/httpserver_test.py | 41 ++++--
tornado/test/httputil_test.py | 23 +--
tornado/test/import_test.py | 2 +-
tornado/test/ioloop_test.py | 5 +-
tornado/test/iostream_test.py | 6 +-
tornado/test/locale_test.py | 22 +--
tornado/test/log_test.py | 16 +--
tornado/test/netutil_test.py | 13 +-
tornado/test/options_test.cfg | 2 +
tornado/test/options_test.py | 30 ++--
tornado/test/process_test.py | 3 +
tornado/test/resolve_test_helper.py | 3 +-
tornado/test/runtests.py | 6 +
tornado/test/simple_httpclient_test.py | 66 ++++++---
tornado/test/template_test.py | 34 +++--
tornado/test/twisted_test.py | 131 +++++++++--------
tornado/test/util.py | 4 +-
tornado/test/util_test.py | 37 +++--
tornado/test/web_test.py | 116 ++++++++++-----
tornado/test/websocket_test.py | 18 ++-
tornado/test/windows_test.py | 25 ++++
tornado/test/wsgi_test.py | 19 ++-
tornado/testing.py | 52 +++----
tornado/util.py | 158 +++++++++++++++------
tornado/web.py | 110 +++++++++-----
tornado/websocket.py | 15 +-
tornado/wsgi.py | 6 +-
tox.ini | 41 +++---
114 files changed, 1548 insertions(+), 970 deletions(-)
create mode 100644 codecov.yml
delete mode 100644 debian/patches/0007-Fix-testsuite-failure-when-sockets-is-not-defined.patch
create mode 100644 debian/python-tornado-doc.doc-base
rename debian/{examples => python-tornado-doc.examples} (100%)
create mode 100644 debian/python-tornado-doc.links
create mode 100644 debian/python-tornado-doc.lintian-overrides
create mode 100644 docs/releases/v4.4.0.rst
create mode 100644 maint/requirements.in
create mode 100644 tornado/platform/auto.pyi
create mode 100644 tornado/speedups.pyi
create mode 100644 tornado/test/http1connection_test.py
create mode 100644 tornado/test/windows_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