Coder Social home page Coder Social logo

pyramid-sanity's People

Contributors

github-actions[bot] avatar jon-betts avatar seanh avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pyramid-sanity's Issues

Add support for Python 3.7, 3.8 and 3.9

For: hypothesis/product-backlog#1199

This looks mostly plain sailing, but we might want to have a crack at getting webtest up to 3.9

lib_pyramid_sanity

Both webtest and webob have unreleased 3.9 support in the works:

From my testing the latest versions available both support 3.8. webtest supports 3.9, but webob does not. As webtest is our direct dependency I think we can ignore it.

Fix badly encoded paths with an exception view instead

Pyramid actually raises a specific URLDecodeError when there's a badly-encoded path component, but by default it 500s because there isn't a builtin exception view for URLDecodeError. Apps or extensions can register a custom exception view to catch this and turn it into a 400:

@view_config(context=URLDecodeError)
def url_decode_error(request):
    return HTTPBadRequest()

This is simpler than our current invalid_path_info_tween_factory() and is also the right solution according to the Pyramid docs for URLDecodeError and multiple GitHub comments from Pyramid maintainers.

Unfortunately Pyramid does not raise URLDecodeError for badly encoded query params, so that one will still have to be fixed by a tween.

See Pylons/pyramid#312 (comment) (and there are also several other maintainer comments on GitHub telling people to use an exception view for this)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.