Delta Regeer

Results 93 comments of Delta Regeer

Unfortunately this is difficult to accomplish in Pyramid due to the way the matching machinery works. It doesn't know that it failed due to a request_method predicate or accept predicate....

@merwok there are a variety of projects that don't use develop installs at all, for example warehouse doesn't instead it expects warehouse to be in it's PYTHONPATH automatically. Others like...

@josuemontano `poetry build` will create an sdist/wheel from your repository. You'll want to use tooling like `pip` to install the built packages (see `dist/` folder after you run `poetry build`).

@zupo I am happily using it on a project right now for a customer. The main issue I've found is when people upload broken packages to PyPi with bad metadata,...

At my new place of employment almost all projects are run directly in a container or lambda functions and there is no `pip install` project or anything like that. There's...

EDIT ME ON GITHUB!!!! :P

My fix is here: https://github.com/Pylons/pyramid/pull/1565 It works, but I just feel that there has to be a better way.

What if someone uses `response.headers['content-type'] = 'text/html'`, now your check in the getter can't know that it was changed and `response.content_type_changed` will remain false.

The GET request should also not have the password sent in the clear across the wire.