release version 3.1.2 (#5800)

This commit is contained in:
David Lord 2025-08-19 14:03:43 -07:00 committed by Christian Clauss
commit 6719ac2afe
46 changed files with 1188 additions and 1161 deletions

View file

@ -3,7 +3,7 @@ import warnings
import pytest
import flask
from flask.globals import request_ctx
from flask.globals import app_ctx
from flask.sessions import SecureCookieSessionInterface
from flask.sessions import SessionInterface
@ -153,12 +153,12 @@ class TestGreenletContextCopying:
@app.route("/")
def index():
flask.session["fizz"] = "buzz"
reqctx = request_ctx.copy()
ctx = app_ctx.copy()
def g():
assert not flask.request
assert not flask.current_app
with reqctx:
with ctx:
assert flask.request
assert flask.current_app == app
assert flask.request.path == "/"