Method: flask.sessions.SessionInterface.save_session
Calls: 1, Exceptions: 1, Paths: 1Back
Path 1: 1 calls (1.0)
test_session_error_pops_context.
None (1)
Response (1)
NotImplementedError (1)
1def save_session(
2 self, app: Flask, session: SessionMixin, response: Response
3 ) -> None:
4 """This is called at the end of each request, after generating
5 a response, before removing the request context. It is skipped
6 if :meth:`is_null_session` returns ``True``.
7 """
8 raise NotImplementedError()