pyramid
pyramid copied to clipboard
Pyramid - A Python web framework
Logger for SQLAlchemy in `Quick Tutorial Chapter 19: Databases Using SQLAlchemy` seems to be wrong
When I worked through the `Quick Tutorial Chapter 19: Databases Using SQLAlchemy`, I did not get the documented log information in the console when running `$VENV/bin/initialize_tutorial_db development.ini`. Changing the logger...
I had a curious problem: I had thrown an object that was wrapped in a lazy object proxy added into the `pshell` environment. It had worked just recently but for...
I had a curious problem: I had thrown an object that was wrapped in lazy_object_proxy added into the `pshell` environment. It had worked before but for some reason stopped working...
I've recently been hit by this problem, after changing the ordering in which controllers were registered, some routes weren't called. This is because some routes using pattern matching were registered...
## Get Support To get help or technical support, see [Get Support](https://pylonsproject.org/community-support.html). ## Bug Report Please [search the issue tracker](https://github.com/Pylons/pyramid/issues) for similar issues before submitting a new issue. **Describe the...
You may have noticed that the Django community started a project called channels which aims to provide a way to handle WebSocket and the HTTP/2 protocol with Python workers. The...
While migrating to the new security policy, I noticed https://github.com/Pylons/pyramid/blob/master/src/pyramid/authentication.py#L950-L955 but it is not used in the constructor, leading to: `TypeError: __init__() got an unexpected keyword argument 'debug'` Is it...
## Bug Report **Describe the bug** Several gettext related functions that are from Python 2 were deprecated in Python 3.8 and were set for removal in Python 3.10 . But...
Ever since commit f9813e050988e69b3b972bcc4495671bde2dafa7, the default behavior is to let exceptions raised within exception views bubble up instead of attempting to handle them until a Response is returned. For example,...