Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python311-pyramid | Distribution: openSUSE:Factory:zSystems |
Version: 2.0.2 | Vendor: openSUSE |
Release: 1.3 | Build date: Tue Jan 2 22:17:44 2024 |
Group: Unspecified | Build host: reproducible |
Size: 2536009 | Source RPM: python-pyramid-2.0.2-1.3.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://pylonsproject.org | |
Summary: The Pyramid web application development framework |
Pyramid is a Python web application development framework produced by the Pylons Project (http://pylonsproject.org). It was previously known as repoze.bfg (http://bfg.repoze.org).
BSD-4-Clause AND ZPL-2.1 AND MIT
* Tue Jan 02 2024 Dirk Müller <dmueller@suse.com> - update to 2.0.2: * Removed support for null-bytes in the path when making a request for a file * Backward Incompatibilities - Requests to a static_view are no longer allowed to contain a null-byte in any * Sun Jun 11 2023 ecsos <ecsos@opensuse.org> - Add %{?sle15_python_module_pythons} * Mon Feb 20 2023 Steve Kowalik <steven.kowalik@suse.com> - Update to 2.0.1: * Add support for Python 3.10 and 3.11. * Copy __name__ from decorated attribute when using pyramid.decorator.reify. * Fix method signatures in docs for pyramid.config.Configurator.add_static_view and pyramid.config.Configurator.override_asset. * Remove obsolete stackframe hack used in Python 3.5.0 when showing configurator conflict errors. * Fix an error when injecting certain objects into the pshell env due to the use of !=. * Pyramid drops support for l*gettext() methods in the i18n module. These have been deprecated in Python's gettext module since 3.8, and removed in Python 3.11. * Avoid setDaemon(True) deprecation warning by updating threading API usage to .daemon = True. * Mon Aug 02 2021 Markéta Machová <mmachova@suse.com> - Update to 2.0 * Add Python 3.8 and 3.9 * Drop Python 2.7, 3.4 and 3.5 * The authentication and authorization policies of Pyramid 1.x have been merged into a single security policy in Pyramid 2.0. New security APIs have been added. * It is now possible to control whether a route pattern contains a trailing slash. * pcreate and the builtin scaffolds have been removed in favor of using the cookiecutter tool and the pyramid-cookiecutter-starter cookiecutter. * Deprecated the authentication and authorization interfaces and principal-based support. * Deprecated several ACL-related aspects of pyramid.security. Equivalent objects should now be imported from the pyramid.authorization module. * Mon Aug 31 2020 Tomáš Chvátal <tchvatal@suse.com> - Remove conditionaling of bcond with_python2 as it ain't needed * Thu Jul 02 2020 pgajdos@suse.com - use %pytest macro, drop dependency on nose * Tue Mar 17 2020 Tomáš Chvátal <tchvatal@suse.com> - Match up all the deps to the reality * Sun Mar 15 2020 Bruno Friedmann <bruno@ioda-net.ch> - Remove python2 support, due to pyton-venusian being only python3 * Fri Jun 21 2019 pgajdos@suse.com - version update to 1.10.4 Bugs fixed during 1.10 - --------------------- - Fix performance regression in ``pyramid.view.view_config`` decorator. See https://github.com/Pylons/pyramid/pull/3490 - Add ``ignore_files`` option to ``[pserve]`` settings which will tell ``pserve`` to ignore certain files/globs when using ``--reload``. See https://github.com/Pylons/pyramid/pull/3464 - Fix docs build for Sphinx 2.0. See https://github.com/Pylons/pyramid/pull/3481 - Improve debugging info from ``pyramid.view.view_config`` decorator. See https://github.com/Pylons/pyramid/pull/3485 - Fix a bug in ``pyramid.testing.DummySecurityPolicy`` in which ``principals_allowed_by_permission`` would return all principals instead of an empty list if ``permissive`` is ``False``. See https://github.com/Pylons/pyramid/pull/3450 - Fix a bug in which ``pyramid.exceptions.ConfigurationConflictError`` may not render the appropriate error message on certain conflicts that were not sortable on Python 3 due to differing types. See https://github.com/Pylons/pyramid/pull/3457 - Avoid configuring logging in the monitor process using the logging config intended for the application. This avoids opening files for writing in both processes which can cause issues on some systems. See https://github.com/Pylons/pyramid/pull/3460 - Fix an issue when passing a duck-typed registry object into ``pyramid.testing.setUp(registry=...)`` in which the registry wasn't properly fixed prior to invoking actions. See https://github.com/Pylons/pyramid/pull/3418 - Fix the ``pyramid.testing.DummyRequest`` to support the new ``request.accept`` API so that ``acceptable_offers`` is available even when code sets the value to a string. See https://github.com/Pylons/pyramid/pull/3396 - Fix deprecated escape sequences in preparation for Python 3.8. See https://github.com/Pylons/pyramid/pull/3400 Features in 1.10 - --------------- - Add a ``_depth`` and ``_category`` arguments to all of the venusian decorators. The ``_category`` argument can be used to affect which actions are registered when performing a ``config.scan(..., category=...)`` with a specific category. The ``_depth`` argument should be used when wrapping the decorator in your own. This change affects ``pyramid.view.view_config``, ``pyramid.view.exception_view_config``, ``pyramid.view.forbidden_view_config``, ``pyramid.view.notfound_view_config``, ``pyramid.events.subscriber`` and ``pyramid.response.response_adapter`` decorators. See https://github.com/Pylons/pyramid/pull/3105 and https://github.com/Pylons/pyramid/pull/3122 - Fix the ``pyramid.request.Request`` class name after using ``set_property`` or ``config.add_request_method`` such that the ``str(request.__class__)`` would appear as ``pyramid.request.Request`` instead of ``pyramid.util.Request``. See https://github.com/Pylons/pyramid/pull/3129 - In ``cherrypy_server_runner``, prefer imports from the ``cheroot`` package over the legacy imports from `cherrypy.wsgiserver`. See https://github.com/Pylons/pyramid/pull/3235 - Add a context manager ``route_prefix_context`` to the ``pyramid.config.Configurator`` to allow for convenient setting of the route_prefix for ``include`` and ``add_route`` calls inside the context. See https://github.com/Pylons/pyramid/pull/3279 - Modify the builtin session implementations to support ``SameSite`` options on cookies and set the default to ``'Lax'``. This affects ``pyramid.session.BaseCookieSessionFactory``, ``pyramid.session.SignedCookieSessionFactory``, and ``pyramid.session.UnencryptedCookieSessionFactoryConfig``. See https://github.com/Pylons/pyramid/pull/3300 - Modify ``pyramid.authentication.AuthTktAuthenticationPolicy`` and ``pyramid.csrf.CookieCSRFStoragePolicy`` to support the ``SameSite`` option on cookies and set the default to ``'Lax'``. See https://github.com/Pylons/pyramid/pull/3319 - Added new ``pyramid.httpexceptions.HTTPPermanentRedirect`` exception/response object for a HTTP 308 redirect. See https://github.com/Pylons/pyramid/pull/3302 - Within ``pshell``, allow the user-defined ``setup`` function to be a generator, in which case it may wrap the command's lifecycle. See https://github.com/Pylons/pyramid/pull/3318 - Within ``pshell``, variables defined by the ``[pshell]`` settings are available within the user-defined ``setup`` function. See https://github.com/Pylons/pyramid/pull/3318 - Add support for Python 3.7. Add testing on Python 3.8 with allowed failures. See https://github.com/Pylons/pyramid/pull/3333 - Added the ``pyramid.config.Configurator.add_accept_view_order`` directive, allowing users to specify media type preferences in ambiguous situations such as when several views match. A default ordering is defined for media types that prefers human-readable html/text responses over JSON. See https://github.com/Pylons/pyramid/pull/3326 - Support a list of media types in the ``accept`` predicate used in ``pyramid.config.Configurator.add_route``. See https://github.com/Pylons/pyramid/pull/3326 - Added ``pyramid.session.JSONSerializer``. See "Upcoming Changes to ISession in Pyramid 2.0" in the "Sessions" chapter of the documentation for more information about this feature. See https://github.com/Pylons/pyramid/pull/3353 - Add a ``registry`` argument to ``pyramid.renderers.get_renderer`` to allow users to avoid threadlocals during renderer lookup. See https://github.com/Pylons/pyramid/pull/3358 - Pyramid's test suite is no longer distributed with the universal wheel. See https://github.com/Pylons/pyramid/pull/3387 - All Python code is now formatted automatically using ``black``. See https://github.com/Pylons/pyramid/pull/3388 Deprecations - ----------- - The ``pyramid.intefaces.ISession`` interface will move to require JSON-serializable objects in Pyramid 2.0. See "Upcoming Changes to ISession in Pyramid 2.0" in the "Sessions" chapter of the documentation for more information about this change. See https://github.com/Pylons/pyramid/pull/3353 - The ``pyramid.session.signed_serialize`` and ``pyramid.session.signed_deserialize`` functions will be removed in Pyramid 2.0, along with the removal of ``pyramid.session.UnencryptedCookieSessionFactoryConfig`` which was deprecated in Pyramid 1.5. Please switch to using the ``SignedCookieSessionFactory``, copying the code, or another session implementation if you're still using these features. See https://github.com/Pylons/pyramid/pull/3353 - Media ranges are deprecated in the ``accept`` argument of ``pyramid.config.Configurator.add_route``. Use a list of explicit media types to ``add_route`` to support multiple types. - Media ranges are deprecated in the ``accept`` argument of ``pyramid.config.Configurator.add_view``. There is no replacement for ranges to ``add_view``, but after much discussion the workflow is fundamentally ambiguous in the face of various client-supplied values for the ``Accept`` header. See https://github.com/Pylons/pyramid/pull/3326 Bug Fixes in 1.10 - ---------------- - Set appropriate ``code`` and ``title`` attributes on the ``HTTPClientError`` and ``HTTPServerError`` exception classes. This prevents inadvertently returning a 520 error code. See https://github.com/Pylons/pyramid/pull/3280 - Replace ``webob.acceptparse.MIMEAccept`` from WebOb with ``webob.acceptparse.create_accept_header`` in the HTTP exception handling code. The old ``MIMEAccept`` has been deprecated. The new methods follow the RFC's more closely. See https://github.com/Pylons/pyramid/pull/3251 - Catch extra errors like ``AttributeError`` when unpickling "trusted" session cookies with bad pickle data in them. This would occur when sharing a secret between projects that shouldn't actually share session cookies, like when reusing secrets between projects in development. See https://github.com/Pylons/pyramid/pull/3325 Backward Incompatibilities in 1.10 - --------------------------------- - On Python 3.4+ the ``repoze.lru`` dependency is dropped. If you were using this package directly in your apps you should make sure that you are depending on it directly within your project. See https://github.com/Pylons/pyramid/pull/3140 - Remove the ``permission`` argument from ``pyramid.config.Configurator.add_route``. This was an argument left over from a feature removed in Pyramid 1.5 and has had no effect since then. See https://github.com/Pylons/pyramid/pull/3299 - Modify the builtin session implementations to set ``SameSite='Lax'`` on cookies. This affects ``pyramid.session.BaseCookieSessionFactory``, ``pyramid.session.SignedCookieSessionFactory``, and ``pyramid.session.UnencryptedCookieSessionFactoryConfig``. See https://github.com/Pylons/pyramid/pull/3300 - Variables defined in the ``[pshell]`` section of the settings will no longer override those set by the ``setup`` function. See https://github.com/Pylons/pyramid/pull/3318 - ``pyramid.config.Configurator.add_notfound_view`` uses default redirect class exception ``pyramid.httpexceptions.HTTPTemporaryRedirect`` instead of previous ``pyramid.httpexceptions.HTTPFound``. See https://github.com/Pylons/pyramid/pull/3328 - Removed ``pyramid.config.Configurator.set_request_property`` which had been deprecated since Pyramid 1.5. Instead use ``pyramid.config.Configurator.add_request_method`` with ``reify=True`` or ``property=True``. See https://github.com/Pylons/pyramid/pull/3368 - Removed the ``principal`` keyword argument from ``pyramid.security.remember`` which had been deprecated since Pyramid 1.6 and replaced by the ``userid`` argument. See https://github.com/Pylons/pyramid/pull/3369 - Removed the ``pyramid.tests`` subpackage that used to contain the Pyramid test suite. These changes also changed the format of the repository to move the code into a ``src`` folder. See https://github.com/Pylons/pyramid/pull/3387 * Mon Oct 09 2017 hpj@urpla.net - add missing runtime dependencies
/etc/alternatives/pdistreport /etc/alternatives/prequest /etc/alternatives/proutes /etc/alternatives/pserve /etc/alternatives/pshell /etc/alternatives/ptweens /etc/alternatives/pviews /usr/bin/pdistreport /usr/bin/pdistreport-3.11 /usr/bin/prequest /usr/bin/prequest-3.11 /usr/bin/proutes /usr/bin/proutes-3.11 /usr/bin/pserve /usr/bin/pserve-3.11 /usr/bin/pshell /usr/bin/pshell-3.11 /usr/bin/ptweens /usr/bin/ptweens-3.11 /usr/bin/pviews /usr/bin/pviews-3.11 /usr/lib/python3.11/site-packages/pyramid /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info/PKG-INFO /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info/SOURCES.txt /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info/dependency_links.txt /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info/entry_points.txt /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info/not-zip-safe /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info/requires.txt /usr/lib/python3.11/site-packages/pyramid-2.0.2-py3.11.egg-info/top_level.txt /usr/lib/python3.11/site-packages/pyramid/__init__.py /usr/lib/python3.11/site-packages/pyramid/__pycache__ /usr/lib/python3.11/site-packages/pyramid/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/asset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/asset.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/authentication.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/authentication.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/authorization.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/authorization.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/csrf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/csrf.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/decorator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/decorator.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/encode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/encode.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/events.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/events.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/httpexceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/httpexceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/i18n.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/i18n.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/interfaces.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/interfaces.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/location.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/location.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/paster.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/paster.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/path.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/path.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/predicates.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/predicates.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/registry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/registry.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/renderers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/renderers.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/request.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/request.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/resource.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/resource.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/response.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/response.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/router.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/router.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/scripting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/scripting.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/security.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/security.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/session.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/session.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/settings.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/settings.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/static.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/static.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/testing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/testing.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/threadlocal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/threadlocal.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/traversal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/traversal.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/tweens.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/tweens.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/url.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/url.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/urldispatch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/urldispatch.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/view.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/view.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/viewderivers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/viewderivers.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/wsgi.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/__pycache__/wsgi.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/asset.py /usr/lib/python3.11/site-packages/pyramid/authentication.py /usr/lib/python3.11/site-packages/pyramid/authorization.py /usr/lib/python3.11/site-packages/pyramid/config /usr/lib/python3.11/site-packages/pyramid/config/__init__.py /usr/lib/python3.11/site-packages/pyramid/config/__pycache__ /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/actions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/actions.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/adapters.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/adapters.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/assets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/assets.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/factories.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/factories.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/i18n.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/i18n.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/predicates.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/predicates.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/rendering.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/rendering.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/routes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/routes.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/security.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/security.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/settings.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/settings.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/testing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/testing.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/tweens.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/tweens.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/views.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/views.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/zca.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/config/__pycache__/zca.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/config/actions.py /usr/lib/python3.11/site-packages/pyramid/config/adapters.py /usr/lib/python3.11/site-packages/pyramid/config/assets.py /usr/lib/python3.11/site-packages/pyramid/config/factories.py /usr/lib/python3.11/site-packages/pyramid/config/i18n.py /usr/lib/python3.11/site-packages/pyramid/config/predicates.py /usr/lib/python3.11/site-packages/pyramid/config/rendering.py /usr/lib/python3.11/site-packages/pyramid/config/routes.py /usr/lib/python3.11/site-packages/pyramid/config/security.py /usr/lib/python3.11/site-packages/pyramid/config/settings.py /usr/lib/python3.11/site-packages/pyramid/config/testing.py /usr/lib/python3.11/site-packages/pyramid/config/tweens.py /usr/lib/python3.11/site-packages/pyramid/config/views.py /usr/lib/python3.11/site-packages/pyramid/config/zca.py /usr/lib/python3.11/site-packages/pyramid/csrf.py /usr/lib/python3.11/site-packages/pyramid/decorator.py /usr/lib/python3.11/site-packages/pyramid/encode.py /usr/lib/python3.11/site-packages/pyramid/events.py /usr/lib/python3.11/site-packages/pyramid/exceptions.py /usr/lib/python3.11/site-packages/pyramid/httpexceptions.py /usr/lib/python3.11/site-packages/pyramid/i18n.py /usr/lib/python3.11/site-packages/pyramid/interfaces.py /usr/lib/python3.11/site-packages/pyramid/location.py /usr/lib/python3.11/site-packages/pyramid/paster.py /usr/lib/python3.11/site-packages/pyramid/path.py /usr/lib/python3.11/site-packages/pyramid/predicates.py /usr/lib/python3.11/site-packages/pyramid/registry.py /usr/lib/python3.11/site-packages/pyramid/renderers.py /usr/lib/python3.11/site-packages/pyramid/request.py /usr/lib/python3.11/site-packages/pyramid/resource.py /usr/lib/python3.11/site-packages/pyramid/response.py /usr/lib/python3.11/site-packages/pyramid/router.py /usr/lib/python3.11/site-packages/pyramid/scripting.py /usr/lib/python3.11/site-packages/pyramid/scripts /usr/lib/python3.11/site-packages/pyramid/scripts/__init__.py /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__ /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/common.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/common.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pdistreport.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pdistreport.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/prequest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/prequest.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/proutes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/proutes.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pserve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pserve.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pshell.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pshell.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/ptweens.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/ptweens.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pviews.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/__pycache__/pviews.cpython-311.pyc /usr/lib/python3.11/site-packages/pyramid/scripts/common.py /usr/lib/python3.11/site-packages/pyramid/scripts/pdistreport.py /usr/lib/python3.11/site-packages/pyramid/scripts/prequest.py /usr/lib/python3.11/site-packages/pyramid/scripts/proutes.py /usr/lib/python3.11/site-packages/pyramid/scripts/pserve.py /usr/lib/python3.11/site-packages/pyramid/scripts/pshell.py /usr/lib/python3.11/site-packages/pyramid/scripts/ptweens.py /usr/lib/python3.11/site-packages/pyramid/scripts/pviews.py /usr/lib/python3.11/site-packages/pyramid/security.py /usr/lib/python3.11/site-packages/pyramid/session.py /usr/lib/python3.11/site-packages/pyramid/settings.py /usr/lib/python3.11/site-packages/pyramid/static.py /usr/lib/python3.11/site-packages/pyramid/testing.py /usr/lib/python3.11/site-packages/pyramid/threadlocal.py /usr/lib/python3.11/site-packages/pyramid/traversal.py /usr/lib/python3.11/site-packages/pyramid/tweens.py /usr/lib/python3.11/site-packages/pyramid/url.py /usr/lib/python3.11/site-packages/pyramid/urldispatch.py /usr/lib/python3.11/site-packages/pyramid/util.py /usr/lib/python3.11/site-packages/pyramid/view.py /usr/lib/python3.11/site-packages/pyramid/viewderivers.py /usr/lib/python3.11/site-packages/pyramid/wsgi.py /usr/share/doc/packages/python311-pyramid /usr/share/doc/packages/python311-pyramid/BFG_HISTORY.rst /usr/share/doc/packages/python311-pyramid/CHANGES.rst /usr/share/doc/packages/python311-pyramid/HISTORY.rst /usr/share/doc/packages/python311-pyramid/README.rst /usr/share/licenses/python311-pyramid /usr/share/licenses/python311-pyramid/LICENSE.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Nov 7 00:41:23 2024