diff options
Diffstat (limited to 'numpy')
| -rw-r--r-- | numpy/__init__.pyi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/__init__.pyi b/numpy/__init__.pyi index ccaca3150..944ece9ff 100644 --- a/numpy/__init__.pyi +++ b/numpy/__init__.pyi @@ -887,7 +887,6 @@ class vectorize: ) -> None: ... def __call__(self, *args: Any, **kwargs: Any) -> Any: ... -def show_config(): ... # Some of these are aliases; others are wrappers with an identical signature round = around round_ = around @@ -898,6 +897,8 @@ cumproduct = cumprod sometrue = any alltrue = all +def show_config() -> None: ... + # TODO: Sort out which parameters are positional-only def nested_iters(*args, **kwargs): ... # TODO: Sort out parameters |
