Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pallets/flask
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: pgjones/flask
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Nov 1, 2019

  1. Add async support

    This allows for async functions to be passed to the Flask class
    instance, for example as a view function,
    
        @app.route("/")
        async def index():
            return "Async hello"
    
    this comes with a cost though of poorer performance than using the
    sync equivalent.
    pgjones committed Nov 1, 2019
    Configuration menu
    Copy the full SHA
    afbd409 View commit details
    Browse the repository at this point in the history
Loading