(foo: Any = _api.deprecation._deprecated_parameter)
| 138 | func(foo="bar") |
| 139 | |
| 140 | def pyplot_wrapper(foo: Any = _api.deprecation._deprecated_parameter) -> None: |
| 141 | func1(foo) |
| 142 | |
| 143 | pyplot_wrapper() # No warning. |
| 144 | with pytest.warns(mpl.MatplotlibDeprecationWarning): |
no test coverage detected
searching dependent graphs…