Method: flask.sessions.SecureCookieSession.__init__
Calls: 491, Exceptions: 0, Paths: 1Back
Path 1: 491 calls (1.0)
None (453) dict (7) {'test': 'test'} (6) {'testing': 42} (3) {'data': 'foo'} (3) {'value': '42'} (2) {'_permanent': True, 'test': 42} (2) {'_permanent...
1def __init__(self, initial: t.Any = None) -> None:
2 def on_update(self) -> None:
3 self.modified = True
4 self.accessed = True
5
6 super().__init__(initial, on_update)