[Python-modules-commits] [python-werkzeug] branch master updated (72fe99c -> 7beba24)

Ondřej Nový onovy-guest at moszumanska.debian.org
Sun May 1 13:31:20 UTC 2016


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

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

      from  72fe99c   Fixed VCS URL (https)
       new  33c73cb   record new upstream branch created by importing python-werkzeug_0.11.9+dfsg1.orig.tar.gz
       new  f888071   Import python-werkzeug_0.11.9+dfsg1.orig.tar.gz
       new  8d81a77   drop_ubuntu_font
       new  b47d91f   merge patched into master
       new  d858185   New upstream release
       new  05e949f   d/watch: Moved from pypi to github, which contains Werkzeug theme
       new  d143aa3   d/copyright: Fixed Files-Excluded for new upstream release
       new  2c504b1   Added AUTHORS file to all binary packages
       new  edd445f   Added myself as uploader
       new  d1f5370   Standards-Version is 3.9.8 now (no change)
       new  279f55c   d/copyright: Added myself to Debian part
       new  38f1e0b   X-Python-Version bumped to 2.6
       new  d196565   Changed description of Py2/Py3/docs packages to distinguish between them
       new  dab05e4   Enabled autopkgtest-pkg-python testsuite
       new  7beba24   Changed Conflicts to Breaks for -doc package

The 15 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:
 .gitignore                              |  17 ++
 .travis.yml                             |  42 +++
 CHANGES                                 | 139 ++++++++++
 CONTRIBUTING.rst                        |  62 +++++
 Makefile                                |   3 +
 PKG-INFO                                |  72 -----
 README.rst                              |  17 +-
 bench/wzbench.py                        | 461 ++++++++++++++++++++++++++++++++
 debian/.git-dpm                         |  14 +-
 debian/changelog                        |  14 +-
 debian/control                          |  22 +-
 debian/copyright                        |   7 +-
 debian/patches/drop_ubuntu_font.patch   |   4 +-
 debian/rules                            |   5 +
 debian/watch                            |   7 +-
 docs/_themes/werkzeug_theme_support.pyc | Bin 2468 -> 0 bytes
 docs/contents.rst.inc                   |   1 +
 docs/debug.rst                          |  28 +-
 docs/exceptions.rst                     |  10 +-
 docs/filesystem.rst                     |  11 +
 docs/local.rst                          |  23 +-
 docs/middlewares.rst                    |   2 +-
 docs/python3.rst                        |   5 +-
 docs/request_data.rst                   |   2 +-
 docs/unicode.rst                        |  22 ++
 examples/cupoftee/pages.py              |   2 +-
 scripts/make-release.py                 | 153 +++++++++++
 setup.cfg                               |  11 +-
 setup.py                                |  18 +-
 tests/__init__.py                       |   2 -
 tests/contrib/test_atom.py              |   1 +
 tests/contrib/test_cache.py             |  45 +++-
 tests/contrib/test_fixers.py            |  27 +-
 tests/contrib/test_iterio.py            |   2 +-
 tests/contrib/test_securecookie.py      |   1 +
 tests/contrib/test_sessions.py          |   5 +-
 tests/contrib/test_wrappers.py          |   4 +-
 tests/test_compat.py                    |  11 +-
 tests/test_datastructures.py            |  19 +-
 tests/test_debug.py                     |  13 +-
 tests/test_exceptions.py                |   1 +
 tests/test_formparser.py                |  41 ++-
 tests/test_http.py                      |  76 ++++--
 tests/test_internal.py                  |   2 +
 tests/test_local.py                     |  35 ++-
 tests/test_routing.py                   | 224 ++++++++++++----
 tests/test_security.py                  |  10 +-
 tests/test_serving.py                   |  53 ++++
 tests/test_test.py                      |  68 ++++-
 tests/test_urls.py                      |  48 ++--
 tests/test_utils.py                     |  64 ++++-
 tests/test_wrappers.py                  | 115 ++++++--
 tests/test_wsgi.py                      |  31 ++-
 tox.ini                                 |  31 +++
 werkzeug-import-rewrite.py              | 230 ++++++++++++++++
 werkzeug/__init__.py                    | 114 ++++----
 werkzeug/_compat.py                     |  36 +--
 werkzeug/_internal.py                   |  18 +-
 werkzeug/_reloader.py                   |  37 ++-
 werkzeug/contrib/atom.py                |  14 +-
 werkzeug/contrib/cache.py               | 165 +++++++++---
 werkzeug/contrib/fixers.py              |  10 +-
 werkzeug/contrib/iterio.py              |   3 +
 werkzeug/contrib/limiter.py             |   1 +
 werkzeug/contrib/lint.py                |  19 +-
 werkzeug/contrib/profiler.py            |  19 +-
 werkzeug/contrib/securecookie.py        |   4 +-
 werkzeug/contrib/sessions.py            |  18 +-
 werkzeug/contrib/testtools.py           |   4 +-
 werkzeug/contrib/wrappers.py            |   6 +
 werkzeug/datastructures.py              |  98 +++++--
 werkzeug/debug/__init__.py              | 322 ++++++++++++++++++++--
 werkzeug/debug/console.py               |   6 +-
 werkzeug/debug/repr.py                  |   7 +-
 werkzeug/debug/shared/debugger.js       | 110 ++++----
 werkzeug/debug/shared/style.css         |  59 ++--
 werkzeug/debug/tbtools.py               |  90 +++++--
 werkzeug/exceptions.py                  |  43 ++-
 werkzeug/filesystem.py                  |  66 +++++
 werkzeug/formparser.py                  |  10 +-
 werkzeug/http.py                        | 102 ++++---
 werkzeug/local.py                       |  13 +-
 werkzeug/posixemulation.py              |  10 +-
 werkzeug/routing.py                     | 139 ++++++++--
 werkzeug/script.py                      |   3 +-
 werkzeug/security.py                    |   3 +-
 werkzeug/serving.py                     | 145 +++++++---
 werkzeug/test.py                        |  26 +-
 werkzeug/testapp.py                     |   6 +-
 werkzeug/urls.py                        |  27 +-
 werkzeug/useragents.py                  |   8 +-
 werkzeug/utils.py                       |  46 ++--
 werkzeug/wrappers.py                    |  97 ++++---
 werkzeug/wsgi.py                        |  32 ++-
 94 files changed, 3425 insertions(+), 844 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 CONTRIBUTING.rst
 delete mode 100644 PKG-INFO
 create mode 100755 bench/wzbench.py
 delete mode 100644 docs/_themes/werkzeug_theme_support.pyc
 create mode 100644 docs/filesystem.rst
 create mode 100644 scripts/make-release.py
 create mode 100644 tox.ini
 create mode 100644 werkzeug-import-rewrite.py
 create mode 100644 werkzeug/filesystem.py

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



More information about the Python-modules-commits mailing list