[Python-modules-commits] [cherrypy3] branch upstream updated (37b18a3 -> 19b5509)

Carl Suster arcresu-guest at moszumanska.debian.org
Fri Jan 6 06:13:51 UTC 2017


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

arcresu-guest pushed a change to branch upstream
in repository cherrypy3.

      from  37b18a3   Imported Upstream version 3.5.0
       new  19b5509   Import cherrypy3_8.7.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:
 .flake8                                            |    4 +
 .gitignore                                         |   25 +
 .pre-commit-config.yaml                            |   43 +
 .travis.yml                                        |   42 +
 CHANGES.rst                                        |  338 +++
 CONTRIBUTING.rst                                   |    1 +
 CherryPy.egg-info/PKG-INFO                         |  146 +-
 CherryPy.egg-info/SOURCES.txt                      |   64 +-
 CherryPy.egg-info/requires.txt                     |   31 +
 LICENSE.md                                         |   30 +
 MANIFEST.in                                        |   13 -
 PKG-INFO                                           |  146 +-
 README.rst                                         |   70 +
 README.txt                                         |   13 -
 cherrypy/LICENSE.txt                               |   25 -
 cherrypy/__init__.py                               |  348 +--
 cherrypy/__main__.py                               |    4 +
 cherrypy/_cpchecker.py                             |  146 +-
 cherrypy/_cpcompat.py                              |  187 +-
 cherrypy/_cpcompat_subprocess.py                   | 1544 ------------
 cherrypy/_cpconfig.py                              |  114 +-
 cherrypy/_cpdispatch.py                            |  107 +-
 cherrypy/_cperror.py                               |   95 +-
 cherrypy/_cplogging.py                             |   82 +-
 cherrypy/_cpmodpy.py                               |   71 +-
 cherrypy/_cpnative_server.py                       |   24 +-
 cherrypy/_cpreqbody.py                             |  107 +-
 cherrypy/_cprequest.py                             |  135 +-
 cherrypy/_cpserver.py                              |   51 +-
 cherrypy/_cpthreadinglocal.py                      |  241 --
 cherrypy/_cptools.py                               |   93 +-
 cherrypy/_cptree.py                                |   90 +-
 cherrypy/_cpwsgi.py                                |  210 +-
 cherrypy/_cpwsgi_server.py                         |    2 +-
 cherrypy/_helper.py                                |  298 +++
 cherrypy/cherryd                                   |  108 +-
 cherrypy/{cherryd => daemon.py}                    |   64 +-
 cherrypy/lib/__init__.py                           |   22 +-
 cherrypy/lib/auth.py                               |   16 +-
 cherrypy/lib/auth_basic.py                         |   18 +-
 cherrypy/lib/auth_digest.py                        |   50 +-
 cherrypy/lib/caching.py                            |   28 +-
 cherrypy/lib/covercp.py                            |   54 +-
 cherrypy/lib/cpstats.py                            |   51 +-
 cherrypy/lib/cptools.py                            |  145 +-
 cherrypy/lib/encoding.py                           |   59 +-
 cherrypy/lib/gctools.py                            |   61 +-
 cherrypy/lib/http.py                               |    6 -
 cherrypy/lib/httpauth.py                           |  131 +-
 cherrypy/lib/httputil.py                           |  143 +-
 cherrypy/lib/jsontools.py                          |   10 +-
 cherrypy/lib/lockfile.py                           |  289 ++-
 cherrypy/lib/locking.py                            |    6 +-
 cherrypy/lib/profiler.py                           |   75 +-
 cherrypy/lib/reprconf.py                           |   83 +-
 cherrypy/lib/sessions.py                           |  211 +-
 cherrypy/lib/static.py                             |   83 +-
 cherrypy/process/__init__.py                       |    4 +-
 cherrypy/process/plugins.py                        |  115 +-
 cherrypy/process/servers.py                        |  116 +-
 cherrypy/process/win32.py                          |   12 +-
 cherrypy/process/wspbus.py                         |  157 +-
 cherrypy/scaffold/__init__.py                      |   30 +-
 cherrypy/test/__init__.py                          |   10 +-
 cherrypy/test/_test_decorators.py                  |   27 +-
 cherrypy/test/_test_states_demo.py                 |   27 +-
 cherrypy/test/benchmark.py                         |  127 +-
 cherrypy/test/fastcgi.conf                         |   18 +
 cherrypy/test/fcgi.conf                            |   14 +
 cherrypy/test/helper.py                            |  154 +-
 cherrypy/test/logtest.py                           |   59 +-
 cherrypy/test/modfastcgi.py                        |   25 +-
 cherrypy/test/modfcgid.py                          |   23 +-
 cherrypy/test/modpy.py                             |   32 +-
 cherrypy/test/modwsgi.py                           |   35 +-
 cherrypy/test/sessiondemo.py                       |   10 +-
 cherrypy/test/static/index.html                    |    2 +-
 cherrypy/test/test_auth_basic.py                   |   20 +-
 cherrypy/test/test_auth_digest.py                  |   20 +-
 cherrypy/test/test_bus.py                          |   34 +-
 cherrypy/test/test_caching.py                      |  266 +-
 cherrypy/test/test_compat.py                       |   18 +-
 cherrypy/test/test_config.py                       |  163 +-
 cherrypy/test/test_config_server.py                |   72 +-
 cherrypy/test/test_conn.py                         |  450 ++--
 cherrypy/test/test_core.py                         |  418 ++--
 cherrypy/test/test_dynamicobjectmapping.py         |  173 +-
 cherrypy/test/test_encoding.py                     |  245 +-
 cherrypy/test/test_etags.py                        |   58 +-
 cherrypy/test/test_http.py                         |  111 +-
 cherrypy/test/test_httpauth.py                     |   36 +-
 cherrypy/test/test_httplib.py                      |   32 +-
 cherrypy/test/test_iterator.py                     |   38 +-
 cherrypy/test/test_json.py                         |   57 +-
 cherrypy/test/test_logging.py                      |   88 +-
 cherrypy/test/test_mime.py                         |   39 +-
 cherrypy/test/test_misc_tools.py                   |   74 +-
 cherrypy/test/test_objectmapping.py                |  266 +-
 cherrypy/test/test_params.py                       |   60 +
 cherrypy/test/test_proxy.py                        |   93 +-
 cherrypy/test/test_refleaks.py                     |   35 +-
 cherrypy/test/test_request_obj.py                  |  501 ++--
 cherrypy/test/test_routes.py                       |   63 +-
 cherrypy/test/test_session.py                      |  203 +-
 cherrypy/test/test_sessionauthenticate.py          |    8 +-
 cherrypy/test/test_states.py                       |  126 +-
 cherrypy/test/test_static.py                       |  217 +-
 cherrypy/test/test_tools.py                        |  195 +-
 cherrypy/test/test_tutorials.py                    |  161 +-
 cherrypy/test/test_virtualhost.py                  |   73 +-
 cherrypy/test/test_wsgi_ns.py                      |   12 +-
 cherrypy/test/test_wsgi_unix_socket.py             |  106 +
 cherrypy/test/test_wsgi_vhost.py                   |   12 +-
 cherrypy/test/test_wsgiapps.py                     |   28 +-
 cherrypy/test/test_xmlrpc.py                       |   69 +-
 cherrypy/test/webtest.py                           |  256 +-
 cherrypy/tutorial/README.txt                       |   31 +-
 cherrypy/tutorial/tut01_helloworld.py              |   15 +-
 cherrypy/tutorial/tut02_expose_methods.py          |   12 +-
 cherrypy/tutorial/tut03_get_and_post.py            |   10 +-
 cherrypy/tutorial/tut04_complex_site.py            |   14 +-
 cherrypy/tutorial/tut05_derived_objects.py         |   10 +-
 cherrypy/tutorial/tut06_default_method.py          |   18 +-
 cherrypy/tutorial/tut07_sessions.py                |    8 +-
 cherrypy/tutorial/tut08_generators_and_yield.py    |   16 +-
 cherrypy/tutorial/tut09_files.py                   |   22 +-
 cherrypy/tutorial/tut10_http_errors.py             |   24 +-
 cherrypy/tutorial/tutorial.conf                    |    8 +-
 cherrypy/wsgiserver/__init__.py                    | 2573 +++++++++++++++++++-
 cherrypy/wsgiserver/ssl_builtin.py                 |   54 +-
 cherrypy/wsgiserver/ssl_pyopenssl.py               |   32 +-
 cherrypy/wsgiserver/test_wsgiserver.py             |   16 +
 cherrypy/wsgiserver/wsgiserver2.py                 | 2481 -------------------
 cherrypy/wsgiserver/wsgiserver3.py                 | 2176 -----------------
 docs/_static/bgsides.png                           |  Bin 0 -> 6498 bytes
 docs/_static/cpdocmain.css                         |  234 ++
 docs/_static/images/cpreturn.gif                   |  Bin 0 -> 6088 bytes
 docs/_static/images/cpyield.gif                    |  Bin 0 -> 9112 bytes
 docs/_static/images/sushibelt.JPG                  |  Bin 0 -> 161186 bytes
 docs/advanced.rst                                  |  695 ++++++
 docs/basics.rst                                    |  873 +++++++
 docs/conf.py                                       |  303 +++
 docs/config.rst                                    |  484 ++++
 docs/contribute.rst                                |   58 +
 docs/deploy.rst                                    |  615 +++++
 docs/development.rst                               |   20 +
 docs/extend.rst                                    |  697 ++++++
 docs/glossary.rst                                  |   34 +
 docs/history.rst                                   |    6 +
 docs/index.rst                                     |   54 +
 docs/install.rst                                   |  159 ++
 docs/intro.rst                                     |  150 ++
 docs/pkg/cherrypy.lib.rst                          |  166 ++
 docs/pkg/cherrypy.process.rst                      |   46 +
 docs/pkg/cherrypy.rst                              |  146 ++
 docs/pkg/cherrypy.scaffold.rst                     |   10 +
 docs/pkg/cherrypy.test.rst                         |  390 +++
 docs/pkg/cherrypy.tutorial.rst                     |   94 +
 docs/pkg/cherrypy.wsgiserver.rst                   |   46 +
 docs/pkg/modules.rst                               |    7 +
 docs/requirements.txt                              |    1 +
 docs/support.rst                                   |   51 +
 docs/tutorials.rst                                 | 1201 +++++++++
 docs/util/convert-trac.py                          |  137 ++
 docs/util/test-doc.py                              |   23 +
 man/cherryd.1                                      |  263 ++
 setup.cfg                                          |   28 +-
 setup.py                                           |  211 +-
 tests/dist-check.py                                |   59 +
 tox.ini                                            |   23 +
 visuals/cherrypy_logo_big.png                      |  Bin 0 -> 21527 bytes
 visuals/cherrypy_logo_small.jpg                    |  Bin 0 -> 3437 bytes
 {cherrypy => visuals}/favicon.ico                  |  Bin
 visuals/made_with_cherrypy_big.png                 |  Bin 0 -> 24450 bytes
 .../made_with_cherrypy_small.png                   |  Bin
 175 files changed, 15924 insertions(+), 11426 deletions(-)
 create mode 100644 .flake8
 create mode 100644 .gitignore
 create mode 100644 .pre-commit-config.yaml
 create mode 100644 .travis.yml
 create mode 100644 CHANGES.rst
 create mode 100644 CONTRIBUTING.rst
 create mode 100644 CherryPy.egg-info/requires.txt
 create mode 100644 LICENSE.md
 delete mode 100644 MANIFEST.in
 create mode 100644 README.rst
 delete mode 100644 README.txt
 delete mode 100644 cherrypy/LICENSE.txt
 create mode 100755 cherrypy/__main__.py
 delete mode 100644 cherrypy/_cpcompat_subprocess.py
 delete mode 100644 cherrypy/_cpthreadinglocal.py
 create mode 100644 cherrypy/_helper.py
 mode change 100644 => 100755 cherrypy/cherryd
 copy cherrypy/{cherryd => daemon.py} (56%)
 mode change 100644 => 100755
 delete mode 100644 cherrypy/lib/http.py
 create mode 100644 cherrypy/test/fastcgi.conf
 create mode 100644 cherrypy/test/fcgi.conf
 mode change 100644 => 100755 cherrypy/test/sessiondemo.py
 create mode 100644 cherrypy/test/test_params.py
 mode change 100644 => 100755 cherrypy/test/test_session.py
 create mode 100644 cherrypy/test/test_wsgi_unix_socket.py
 create mode 100644 cherrypy/wsgiserver/test_wsgiserver.py
 delete mode 100644 cherrypy/wsgiserver/wsgiserver2.py
 delete mode 100644 cherrypy/wsgiserver/wsgiserver3.py
 create mode 100644 docs/_static/bgsides.png
 create mode 100644 docs/_static/cpdocmain.css
 create mode 100644 docs/_static/images/cpreturn.gif
 create mode 100644 docs/_static/images/cpyield.gif
 create mode 100644 docs/_static/images/sushibelt.JPG
 create mode 100644 docs/advanced.rst
 create mode 100644 docs/basics.rst
 create mode 100644 docs/conf.py
 create mode 100644 docs/config.rst
 create mode 100644 docs/contribute.rst
 create mode 100644 docs/deploy.rst
 create mode 100644 docs/development.rst
 create mode 100644 docs/extend.rst
 create mode 100644 docs/glossary.rst
 create mode 100644 docs/history.rst
 create mode 100644 docs/index.rst
 create mode 100644 docs/install.rst
 create mode 100644 docs/intro.rst
 create mode 100644 docs/pkg/cherrypy.lib.rst
 create mode 100644 docs/pkg/cherrypy.process.rst
 create mode 100644 docs/pkg/cherrypy.rst
 create mode 100644 docs/pkg/cherrypy.scaffold.rst
 create mode 100644 docs/pkg/cherrypy.test.rst
 create mode 100644 docs/pkg/cherrypy.tutorial.rst
 create mode 100644 docs/pkg/cherrypy.wsgiserver.rst
 create mode 100644 docs/pkg/modules.rst
 create mode 100644 docs/requirements.txt
 create mode 100644 docs/support.rst
 create mode 100644 docs/tutorials.rst
 create mode 100644 docs/util/convert-trac.py
 create mode 100644 docs/util/test-doc.py
 create mode 100644 man/cherryd.1
 create mode 100644 tests/dist-check.py
 create mode 100644 tox.ini
 create mode 100644 visuals/cherrypy_logo_big.png
 create mode 100644 visuals/cherrypy_logo_small.jpg
 copy {cherrypy => visuals}/favicon.ico (100%)
 create mode 100644 visuals/made_with_cherrypy_big.png
 copy {cherrypy/scaffold/static => visuals}/made_with_cherrypy_small.png (100%)

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



More information about the Python-modules-commits mailing list