Path 1: 246 calls (1.0)

tuple (246)

{'use_cookies': True} (245) {'use_cookies': False} (1)

1def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
2        super().__init__(*args, **kwargs)
3        self.preserve_context = False
4        self._new_contexts: list[t.ContextManager[t.Any]] = []
5        self._context_stack = ExitStack()
6        self.environ_base = {
7            "REMOTE_ADDR": "127.0.0.1",
8            "HTTP_USER_AGENT": f"werkzeug/{werkzeug.__version__}",
9        }