Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor the Multipart parsing into a Sans-IO layer #2017

Merged
merged 2 commits into from
Jan 26, 2021

Commits on Jan 25, 2021

  1. Refactor the Multipart parsing into a Sans-IO layer

    This allows it to be used in async (ASGI) frameworks. It also
    hopefully makes the code a little clearer to follow.
    
    This removes the ``Content-Transfer-Encoding`` support as RFC7578
    states it is deprecated and
    
        Currently, no deployed implementations that send such bodies have
        been discovered.
    
    This removes the IE6 name fix as IE6 is no longer supported (either
    directly or by Werkzeug).
    
    This requires the dataclasses backport, which I think is ok as
    dataclasses are in the stdlib, and 3.6 has less than a year till EoL.
    
    The API is based on that successfully used by h11.
    pgjones committed Jan 25, 2021
    Configuration menu
    Copy the full SHA
    cbb446f View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2021

  1. Configuration menu
    Copy the full SHA
    76bb39a View commit details
    Browse the repository at this point in the history