MCPcopy Create free account
hub / github.com/pallets/quart / _save_session

Function _save_session

tests/test_sessions.py:62–68  ·  view source on GitHub ↗
(session: SecureCookieSession)

Source from the content-addressed store, hash-verified

60
61
62async def _save_session(session: SecureCookieSession) -> Response:
63 interface = SecureCookieSessionInterface()
64 app = Quart(__name__)
65 app.secret_key = "secret"
66 response = Response("")
67 await interface.save_session(app, session, response)
68 return response
69
70
71async def test_secure_cookie_session_interface_save_session_no_modification() -> None:

Calls 4

save_sessionMethod · 0.95
QuartClass · 0.90
ResponseClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…