Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python3-pecan | Distribution: SUSE Linux Enterprise 15 |
Version: 1.2.1 | Vendor: SUSE LLC <https://www.suse.com/> |
Release: 1.27 | Build date: Sat May 26 21:40:11 2018 |
Group: Development/Languages/Python | Build host: sheep28 |
Size: 1620874 | Source RPM: python-pecan-1.2.1-1.27.src.rpm |
Packager: https://www.suse.com/ | |
Url: http://github.com/dreamhost/pecan | |
Summary: A WSGI object-dispatching web framework, designed to be lean and fast |
A WSGI object-dispatching web framework, designed to be lean and fast with few dependencies.
BSD-3-Clause
* Thu Aug 24 2017 tbechtold@suse.com - Add pull-request-91.patch . That fixes the tests for python3.6 * Wed Jul 12 2017 tbechtold@suse.com - Only require python-singledispatch on python2 * Thu Jun 29 2017 tbechtold@suse.com - convert to singlespec - fix Source url * Tue Nov 15 2016 dmueller@suse.com - update to 1.2.1 * Fri Mar 18 2016 tbechtold@suse.com - update to 1.0.5: * Fix a bug in controller argspec detection when class-based decorators are used * Removed an open file handle leak when pecan renders errors for Jinja2 and Genshi templates * Resolved a bug which caused log output to be duplicated in projects created with pecan create * Fixed a bug in pecan.hooks.HookController for newer versions of Python3.4 * Sat Aug 22 2015 tbechtold@suse.com - update to 1.0.2: * Version increment. * Add a thread lock to `pecan serve --reload` to avoid multiple restarts * Fix an argspec detection edge case in `pecan.util.getargspec` * Version increment. * Fix a subtle bug in pecan.configuration.Config attribute assignment * Fix a bug in extension-based content-type guessing with a trailing slash. * Mark stable OpenStack branches as non-voting; their tests are often unstable * Version increment. * Update bug reporting verbiage. * core: make status code mandatory in abort * Move pecan off of stackforge and back to github.com/pecan and TravisCI. * Fix a bug in the way `default_renderer` is applied. * Allow all RFC3986-specified characters in explicit path segments. * Replace pecan's homegrown interactive debugging middleware with backlash * Fix broken wsme-stable tests as of the latest 0.7.0 release. * Allowing tracebacks to be surfaced through abort * Fri Jul 24 2015 seife+obs@b1-systems.com - fix non-suse build by conditionalizing Suggests: tags * Mon Jun 22 2015 tbechtold@suse.com - update to 0.9.0: * Require orderddict for Python 2.6 support. * Version increment. * Add tox environments to gate pecan against openstack/gnocchi * Add tox environments to gate pecan against openstack/magnum * Gate against latest stable projects. * Properly raise HTTP 405 (and specify Allow headers) for RestController * Update the `rest-api` scaffold to use generic controllers, *not* RestController Closes-Bug #1413038 * Allow users to specify custom path segments for routing. * Fix broken wsme-stable tests. * Replace ci.o.o links with docs.o.o/infra * Fix unquoting of positional args with plus sign * Add more emphasis to the need for debug=False in deployment documentation. * Properly handle Python3 Unicode path segments in pecan routing. * make_app() now uses the debugger param in DebugMiddleware() * Drop support for Python 3.2. * Prevent @expose(generic=True) on special methods (_route, _lookup, _default). * core: do not assume controller is a method * Fix broken wsme-stable job and pep8 failures. * Document how to serve static files (with an iterable, not in-memory). * Default the `pecan` log level to DEBUG for development. - Add python-ordereddict Requires for SLE11SP3 * Tue Feb 24 2015 tbechtold@suse.com - update to 0.8.3 * Properly* detect Python < 3.3. * Fix py32 support; importlib.machinery.SourceFileLoader doesn't exist until py33 * Version increment. * Change pecan to more gracefully handle a few odd request encoding edge cases. * Document pecan.request.context * Improve ImportError verbosity for configuration files. * core: optimize renderer computing * middleware.static: remove useless stored variable * Version increment. * Don't clone pecan-dependent projects from cgit. * Allows multiple parameters to be converted to list * tox: pass posargs to test command * Corrects ouptut -> output in docs/source/hooks.rst * Add documentation for generic REST controllers. * Version increment. * Improve detection of infinite recursion for PecanHook and pypy. * Fix broken wsme-stable tests and remove some deprecated pip flags. * Fix typo in description * Only define remainder when not empty * Fixes expose of staticmethod * Version increment. * Resolve a bug that mixes up argument order for generic functions. * Fix a routing bug for generic subcontrollers. * Remove `assert` for flow control; it can be optimized away with `python -O`. * For HTTP POSTs, map JSON request bodies to controller keyword arguments. * Improve argspec detection and leniency for wrapped controllers. * When path arguments are incorrect for RestController, return HTTP 404, not 400. * When detecting non-content for HTTP 204, properly catch UnicodeDecodeError. * Fix a bug in generic function handling when context locals are disabled. * Stop using distribute for Python 3 tests. * Revert "Import run_cross_tests.sh from oslo-incubator" * Add docs environment to tox.ini * Mon Nov 10 2014 dmueller@suse.com - skip tests on SLE_12 (the depending packages are not there) * Tue Sep 23 2014 dmueller@suse.com - update to 0.7.0: * Fixed an edge case in RestController routing which should have returned an HTTP 400 but was instead raising an exception (and thus, HTTP 500). * Fixed an incorrect root logger configuration for quickstarted pecan projects. * Added pecan.state.arguments, a new feature for inspecting controller call arguments. * Fixed an infinite recursion error in PecanHook application. Subclassing both rest.RestController and hooks.HookController resulted in an infinite recursion error in hook application (which prevented applications from starting). * Pecan’s tests are now included in its source distribution. - remove-logutils.diff: drop, logutils is needed now - reenable testsuite run during build again * Wed Aug 20 2014 tbechtold@suse.com - Disable testsuite run during build. Upstream tarball doesn't contain all needed files to run the testsuite. * Thu Jul 24 2014 dmueller@suse.com - update to 0.6.1: * Fixed a bug which causes pecan to mistakenly return HTTP 204 for non-empty response bodies. * Added support for disabling the pecan.request and pecan.response threadlocals at the WSGI application level in favor of explicit reference passing. For more information, see Context/Thread-Locals vs. Explicit Argument Passing. * Added better support for hook composition via subclassing and mixins. For more information, see Attaching Hooks. * Added support for specifying custom request and response implementations at the WSGI application level for people who want to extend the functionality provided by the base classes in webob. * Pecan controllers may now return an explicit webob.Response instance to short-circuit Pecan’s template rendering and serialization. * For generic methods that return HTTP 405, pecan now generates an Allow header to communicate acceptable methods to the client. * Fixed a bug in adherence to RFC2616: if an exposed method returns no response body (or namespace), pecan will now enforce an HTTP 204 response (instead of HTTP 200). * Fixed a bug in adherence to RFC2616: when pecan responds with HTTP 204 or HTTP 304, the Content-Type header is automatically stripped (because these types of HTTP responses do not contain body content). * Fixed a bug: now when clients request JSON via an Accept header, webob HTTP exceptions are serialized as JSON, not their native HTML representation. * Fixed a bug that broke applications which specified default_renderer = json. * This release adds formal support for pypy. * Added colored request logging to the pecan serve command. * Added a scaffold for easily generating a basic REST API. * Added the ability to pass arbitrary keyword arguments to pecan.testing.load_test_app. * Fixed a recursion-related bug in the error document middleware. * Fixed a bug in the gunicorn_pecan command that caused threading.local data to leak between eventlet/gevent green threads. * Improved documentation through fixes and narrative tutorials for sample pecan applications. - add remove-logutils.diff: Remove dependency on logutils for newer distros, its part of main python now * Thu Feb 20 2014 dmueller@suse.com - update to 0.4.5: * Fixed a trailing slash bug for `RestController`s that have a `_lookup` method. * Cleaned up the WSGI app reference from the threadlocal state on every request (to avoid potential memory leaks, especially when testing). * Improved pecan documentation and correctd intersphinx references. * pecan supports Python 3.4. * Fri Jan 10 2014 dmueller@suse.com - update to 0.4.4: * Removed memoization of certain controller attributes, which can lead to a memory leak in dynamic controller lookups. * Fixed several bugs for RestController. * Fixed a bug in security handling for generic controllers. * Resolved a bug in `_default` handlers used in `RestController`. * Persist `pecan.request.context` across internal redirects. - reenable make check * Tue Dec 10 2013 dmueller@suse.com - fix requires after the version update to 0.4.2, it was even documented in the .changes file: * Replaced the ``simplegeneric`` dependency with the new ``functools.singledispatch`` function in preparation for Python 3.4 support. * Thu Dec 05 2013 p.drouand@gmail.com - Update to version 0.4.2 * Remove a routing optimization that breaks the WSME pecan plugin. - Changes from 0.4.1 * Moved the project to `StackForge infrastructure <http://ci.openstack.org/stackforge.html>`_, including Gerrit code review, Jenkins continuous integration, and GitHub mirroring. * Added a pecan plugin for the popular `uwsgi server <http://uwsgi-docs.readthedocs.org>`_. * Replaced the ``simplegeneric`` dependency with the new ``functools.singledispatch`` function in preparation for Python 3.4 support. * Optimized pecan's core dispatch routing for notably faster response times. * Thu Nov 28 2013 dmueller@suse.com - package LICENSE and README.rst * Wed Sep 18 2013 dmueller@suse.com - require python-logutils on Python < 2.7 * Tue Aug 13 2013 dmueller@suse.com - update to 0.3.2: * Made some changes to simplify how ``pecan.conf.app`` is passed to new apps. * Fixed a routing bug for certain ``_lookup`` controller configurations. * Improved documentation for handling file uploads. * Deprecated the ``pecan.conf.requestviewer`` configuration option. * Tue Jun 25 2013 dmueller@suse.com - Update to version 0.3.0: + New upstream release * Fri Feb 22 2013 saschpe@suse.de - Update to version 0.2.1: + Upstream provides no changelog * Thu Jan 17 2013 saschpe@suse.de - Initial version
/etc/alternatives/gunicorn_pecan /etc/alternatives/pecan /usr/bin/gunicorn_pecan /usr/bin/gunicorn_pecan-3.6 /usr/bin/pecan /usr/bin/pecan-3.6 /usr/lib/python3.6/site-packages/pecan /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info/PKG-INFO /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info/SOURCES.txt /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info/dependency_links.txt /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info/entry_points.txt /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info/not-zip-safe /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info/requires.txt /usr/lib/python3.6/site-packages/pecan-1.2.1-py3.6.egg-info/top_level.txt /usr/lib/python3.6/site-packages/pecan/__init__.py /usr/lib/python3.6/site-packages/pecan/__pycache__ /usr/lib/python3.6/site-packages/pecan/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/configuration.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/configuration.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/core.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/core.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/decorators.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/decorators.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/deploy.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/deploy.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/extensions.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/extensions.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/hooks.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/hooks.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/jsonify.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/jsonify.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/log.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/log.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/rest.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/rest.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/routing.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/routing.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/secure.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/secure.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/templating.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/templating.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/testing.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/testing.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/util.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/__pycache__/util.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/commands /usr/lib/python3.6/site-packages/pecan/commands/__init__.py /usr/lib/python3.6/site-packages/pecan/commands/__pycache__ /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/base.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/base.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/create.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/create.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/serve.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/serve.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/shell.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/commands/__pycache__/shell.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/commands/base.py /usr/lib/python3.6/site-packages/pecan/commands/create.py /usr/lib/python3.6/site-packages/pecan/commands/serve.py /usr/lib/python3.6/site-packages/pecan/commands/shell.py /usr/lib/python3.6/site-packages/pecan/compat /usr/lib/python3.6/site-packages/pecan/compat/__init__.py /usr/lib/python3.6/site-packages/pecan/compat/__pycache__ /usr/lib/python3.6/site-packages/pecan/compat/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/compat/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/configuration.py /usr/lib/python3.6/site-packages/pecan/core.py /usr/lib/python3.6/site-packages/pecan/decorators.py /usr/lib/python3.6/site-packages/pecan/deploy.py /usr/lib/python3.6/site-packages/pecan/ext /usr/lib/python3.6/site-packages/pecan/ext/__init__.py /usr/lib/python3.6/site-packages/pecan/ext/__pycache__ /usr/lib/python3.6/site-packages/pecan/ext/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/ext/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/extensions.py /usr/lib/python3.6/site-packages/pecan/hooks.py /usr/lib/python3.6/site-packages/pecan/jsonify.py /usr/lib/python3.6/site-packages/pecan/log.py /usr/lib/python3.6/site-packages/pecan/middleware /usr/lib/python3.6/site-packages/pecan/middleware/__init__.py /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__ /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/debug.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/debug.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/errordocument.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/errordocument.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/recursive.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/recursive.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/static.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/middleware/__pycache__/static.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/middleware/debug.py /usr/lib/python3.6/site-packages/pecan/middleware/errordocument.py /usr/lib/python3.6/site-packages/pecan/middleware/recursive.py /usr/lib/python3.6/site-packages/pecan/middleware/static.py /usr/lib/python3.6/site-packages/pecan/rest.py /usr/lib/python3.6/site-packages/pecan/routing.py /usr/lib/python3.6/site-packages/pecan/scaffolds /usr/lib/python3.6/site-packages/pecan/scaffolds/__init__.py /usr/lib/python3.6/site-packages/pecan/scaffolds/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+ /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/__init__.py /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/app.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers/__init__.py /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers/__pycache__/root.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers/__pycache__/root.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/controllers/root.py /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/model /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/model/__init__.py /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/model/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/model/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/model/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/templates /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/templates/error.html /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/templates/index.html /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/templates/layout.html /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests/__init__.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests/__pycache__/test_units.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests/__pycache__/test_units.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests/config.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests/test_functional.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/base/+package+/tests/test_units.py /usr/lib/python3.6/site-packages/pecan/scaffolds/base/MANIFEST.in /usr/lib/python3.6/site-packages/pecan/scaffolds/base/config.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/base/public /usr/lib/python3.6/site-packages/pecan/scaffolds/base/public/css /usr/lib/python3.6/site-packages/pecan/scaffolds/base/public/css/style.css /usr/lib/python3.6/site-packages/pecan/scaffolds/base/public/images /usr/lib/python3.6/site-packages/pecan/scaffolds/base/public/images/logo.png /usr/lib/python3.6/site-packages/pecan/scaffolds/base/setup.cfg_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/base/setup.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+ /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/__init__.py /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/__pycache__/errors.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/__pycache__/errors.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/app.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers/__init__.py /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers/__pycache__/root.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers/__pycache__/root.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/controllers/root.py /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/errors.py /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/model /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/model/__init__.py /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/model/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/model/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/model/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests/__init__.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests/__pycache__ /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests/__pycache__/test_units.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests/__pycache__/test_units.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests/config.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests/test_functional.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/+package+/tests/test_units.py /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/config.py_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/setup.cfg_tmpl /usr/lib/python3.6/site-packages/pecan/scaffolds/rest-api/setup.py_tmpl /usr/lib/python3.6/site-packages/pecan/secure.py /usr/lib/python3.6/site-packages/pecan/templating.py /usr/lib/python3.6/site-packages/pecan/testing.py /usr/lib/python3.6/site-packages/pecan/tests /usr/lib/python3.6/site-packages/pecan/tests/__init__.py /usr/lib/python3.6/site-packages/pecan/tests/__pycache__ /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/scaffold_builder.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/scaffold_builder.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_base.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_base.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_commands.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_commands.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_conf.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_conf.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_generic.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_generic.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_hooks.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_hooks.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_jsonify.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_jsonify.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_no_thread_locals.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_no_thread_locals.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_rest.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_rest.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_scaffolds.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_scaffolds.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_secure.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_secure.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_templating.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_templating.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_util.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/__pycache__/test_util.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__ /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/config.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/config.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/empty.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/empty.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/foobar.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/foobar.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/forcedict.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/__pycache__/forcedict.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad/__pycache__ /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad/__pycache__/importerror.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad/__pycache__/importerror.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad/__pycache__/module_and_underscore.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad/__pycache__/module_and_underscore.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad/importerror.py /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/bad/module_and_underscore.py /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/config.py /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/empty.py /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/foobar.py /usr/lib/python3.6/site-packages/pecan/tests/config_fixtures/forcedict.py /usr/lib/python3.6/site-packages/pecan/tests/middleware /usr/lib/python3.6/site-packages/pecan/tests/middleware/__init__.py /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__ /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/test_errordocument.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/test_errordocument.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/test_recursive.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/test_recursive.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/test_static.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/__pycache__/test_static.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/middleware/static_fixtures /usr/lib/python3.6/site-packages/pecan/tests/middleware/static_fixtures/self.png /usr/lib/python3.6/site-packages/pecan/tests/middleware/static_fixtures/text.txt /usr/lib/python3.6/site-packages/pecan/tests/middleware/test_errordocument.py /usr/lib/python3.6/site-packages/pecan/tests/middleware/test_recursive.py /usr/lib/python3.6/site-packages/pecan/tests/middleware/test_static.py /usr/lib/python3.6/site-packages/pecan/tests/scaffold_builder.py /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/__init__.py /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/__pycache__ /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/content_sub /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/content_sub/bar /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/content_sub/bar/spam.txt_tmpl /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/content_sub/foo_tmpl /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/file_sub /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/file_sub/bar_+package+ /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/file_sub/bar_+package+/spam.txt /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/file_sub/foo_+package+ /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/simple /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/simple/bar /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/simple/bar/spam.txt /usr/lib/python3.6/site-packages/pecan/tests/scaffold_fixtures/simple/foo /usr/lib/python3.6/site-packages/pecan/tests/templates /usr/lib/python3.6/site-packages/pecan/tests/templates/__init__.py /usr/lib/python3.6/site-packages/pecan/tests/templates/__pycache__ /usr/lib/python3.6/site-packages/pecan/tests/templates/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/pecan/tests/templates/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/pecan/tests/templates/form_colors.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_colors_invalid.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_colors_valid.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_login_invalid.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_login_valid.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_name.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_name_invalid.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_name_invalid_custom.html /usr/lib/python3.6/site-packages/pecan/tests/templates/form_name_valid.html /usr/lib/python3.6/site-packages/pecan/tests/templates/genshi.html /usr/lib/python3.6/site-packages/pecan/tests/templates/genshi_bad.html /usr/lib/python3.6/site-packages/pecan/tests/templates/jinja.html /usr/lib/python3.6/site-packages/pecan/tests/templates/jinja_bad.html /usr/lib/python3.6/site-packages/pecan/tests/templates/kajiki.html /usr/lib/python3.6/site-packages/pecan/tests/templates/mako.html /usr/lib/python3.6/site-packages/pecan/tests/templates/mako_bad.html /usr/lib/python3.6/site-packages/pecan/tests/test_base.py /usr/lib/python3.6/site-packages/pecan/tests/test_commands.py /usr/lib/python3.6/site-packages/pecan/tests/test_conf.py /usr/lib/python3.6/site-packages/pecan/tests/test_generic.py /usr/lib/python3.6/site-packages/pecan/tests/test_hooks.py /usr/lib/python3.6/site-packages/pecan/tests/test_jsonify.py /usr/lib/python3.6/site-packages/pecan/tests/test_no_thread_locals.py /usr/lib/python3.6/site-packages/pecan/tests/test_rest.py /usr/lib/python3.6/site-packages/pecan/tests/test_scaffolds.py /usr/lib/python3.6/site-packages/pecan/tests/test_secure.py /usr/lib/python3.6/site-packages/pecan/tests/test_templating.py /usr/lib/python3.6/site-packages/pecan/tests/test_util.py /usr/lib/python3.6/site-packages/pecan/util.py /usr/share/doc/packages/python3-pecan /usr/share/doc/packages/python3-pecan/LICENSE /usr/share/doc/packages/python3-pecan/README.rst
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Mar 9 13:21:55 2025