[Python-modules-commits] [python-pyramid] branch master updated (b622d0c -> be8b99b)

Takaki Taniguchi takaki at moszumanska.debian.org
Mon Jul 17 10:00:14 UTC 2017


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

takaki pushed a change to branch master
in repository python-pyramid.

      from  b622d0c   remove debian/patches
       new  de0ca99   debian/watch: Add repacksuffix.
       new  67611bf   New upstream version 1.9.1+dfsg
       new  5ca8222   Updated version 1.9.1+dfsg from 'upstream/1.9.1+dfsg'
       new  be8b99b   new upstream

The 4 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                                        |   4 +
 CHANGES.txt                                        | 472 ++++++++-----------
 CONTRIBUTORS.txt                                   |  18 +
 HACKING.txt                                        |   2 +-
 HISTORY.txt                                        | 305 +++++++++++++
 PKG-INFO                                           | 503 +++++++++------------
 README.rst                                         |  26 +-
 RELEASING.txt                                      |  49 +-
 TODO.txt                                           |   2 -
 contributing.md                                    |  10 +-
 debian/changelog                                   |   7 +-
 debian/watch                                       |   2 +-
 pyramid.egg-info/PKG-INFO                          | 503 +++++++++------------
 pyramid.egg-info/SOURCES.txt                       |   5 +
 pyramid.egg-info/requires.txt                      |   2 +
 pyramid/authentication.py                          |  12 +-
 pyramid/config/__init__.py                         |  52 ++-
 pyramid/config/factories.py                        |  25 +
 pyramid/config/security.py                         |  36 +-
 pyramid/config/settings.py                         |   1 +
 pyramid/config/util.py                             |  81 +---
 pyramid/config/views.py                            |  27 +-
 pyramid/csrf.py                                    | 332 ++++++++++++++
 pyramid/encode.py                                  |  45 +-
 pyramid/events.py                                  |  25 +-
 pyramid/httpexceptions.py                          |   2 +-
 pyramid/interfaces.py                              | 126 +++++-
 pyramid/paster.py                                  |  59 +--
 pyramid/predicates.py                              |   2 +-
 pyramid/registry.py                                |   4 +-
 pyramid/renderers.py                               |   5 +-
 pyramid/request.py                                 |   2 +-
 pyramid/response.py                                |  30 +-
 pyramid/router.py                                  | 106 +++--
 pyramid/scaffolds/__init__.py                      |   8 +-
 .../alchemy/+package+/models/__init__.py_tmpl      |   1 +
 .../alchemy/+package+/templates/layout.jinja2_tmpl |  12 +-
 pyramid/scaffolds/alchemy/development.ini_tmpl     |   6 +-
 pyramid/scaffolds/alchemy/production.ini_tmpl      |   4 +-
 .../starter/+package+/templates/layout.jinja2_tmpl |  12 +-
 pyramid/scaffolds/starter/development.ini_tmpl     |   6 +-
 pyramid/scaffolds/starter/production.ini_tmpl      |   4 +-
 pyramid/scaffolds/zodb/+package+/__init__.py       |   2 +
 .../zodb/+package+/templates/mytemplate.pt_tmpl    |  12 +-
 pyramid/scaffolds/zodb/development.ini_tmpl        |   6 +-
 pyramid/scaffolds/zodb/production.ini_tmpl         |   4 +-
 pyramid/scripts/common.py                          |  27 +-
 pyramid/scripts/prequest.py                        |  19 +-
 pyramid/scripts/proutes.py                         |  35 +-
 pyramid/scripts/pserve.py                          | 142 +++---
 pyramid/scripts/pshell.py                          |  31 +-
 pyramid/scripts/ptweens.py                         |   8 +-
 pyramid/scripts/pviews.py                          |  10 +-
 pyramid/security.py                                | 114 +++--
 pyramid/session.py                                 | 169 +------
 pyramid/testing.py                                 |   1 +
 pyramid/tests/pkgs/subrequestapp/__init__.py       |   4 +-
 pyramid/tests/test_config/test_factories.py        |  19 +-
 pyramid/tests/test_config/test_init.py             |  26 ++
 pyramid/tests/test_config/test_settings.py         |  25 +-
 pyramid/tests/test_config/test_util.py             | 204 +--------
 pyramid/tests/test_config/test_views.py            |   4 +-
 pyramid/tests/test_csrf.py                         | 406 +++++++++++++++++
 pyramid/tests/test_encode.py                       |  11 +-
 pyramid/tests/test_events.py                       |  15 +-
 pyramid/tests/test_httpexceptions.py               |   6 +
 pyramid/tests/test_integration.py                  |  30 +-
 pyramid/tests/test_paster.py                       | 190 +++-----
 pyramid/tests/test_renderers.py                    |   8 +
 pyramid/tests/test_response.py                     |  21 +-
 pyramid/tests/test_router.py                       | 109 +++--
 .../+package+/templates/mytemplate.pt_tmpl         |   2 +-
 pyramid/tests/test_scripts/dummy.py                |  70 ++-
 pyramid/tests/test_scripts/test_prequest.py        |  62 +--
 pyramid/tests/test_scripts/test_proutes.py         |  74 +--
 pyramid/tests/test_scripts/test_pserve.py          | 102 +++--
 pyramid/tests/test_scripts/test_pshell.py          |  55 +--
 pyramid/tests/test_scripts/test_ptweens.py         |   3 +-
 pyramid/tests/test_scripts/test_pviews.py          |   3 +-
 pyramid/tests/test_security.py                     |  28 +-
 pyramid/tests/test_session.py                      | 138 ------
 pyramid/tests/test_tweens.py                       |  17 +-
 pyramid/tests/test_url.py                          |  32 ++
 pyramid/tests/test_util.py                         | 200 +++++++-
 pyramid/tests/test_view.py                         | 117 ++++-
 pyramid/tests/test_viewderivers.py                 |   1 +
 pyramid/threadlocal.py                             |  29 +-
 pyramid/tweens.py                                  |  76 ++--
 pyramid/url.py                                     | 180 +++-----
 pyramid/util.py                                    |  61 ++-
 pyramid/view.py                                    | 144 ++++--
 pyramid/viewderivers.py                            |  17 +-
 setup.cfg                                          |   4 +
 setup.py                                           |  19 +-
 94 files changed, 3630 insertions(+), 2397 deletions(-)
 create mode 100644 pyramid/csrf.py
 create mode 100644 pyramid/tests/test_csrf.py

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



More information about the Python-modules-commits mailing list