Path 1: 35 calls (1.0)

'__path__' (35)

AttributeError (35)

1def __getattr__(name: str) -> t.Any:
2    if name == "_app_ctx_stack":
3        import warnings
4
5        warnings.warn(
6            "'_app_ctx_stack' is deprecated and will be removed in Flask 2.4.",
7            DeprecationWarning,
8            stacklevel=2,
9        )
10        return __app_ctx_stack
11
12    if name == "_request_ctx_stack":
13        import warnings
14
15        warnings.warn(
16            "'_request_ctx_stack' is deprecated and will be removed in Flask 2.4.",
17            DeprecationWarning,
18            stacklevel=2,
19        )
20        return __request_ctx_stack
21
22    raise AttributeError(name)