diff options
author | Josh Wilson <person142@users.noreply.github.com> | 2020-10-07 21:17:26 -0700 |
---|---|---|
committer | Josh Wilson <person142@users.noreply.github.com> | 2020-10-07 21:18:05 -0700 |
commit | be9b5759ef0893b6e8bf03ca48a5ed83d7b9dc75 (patch) | |
tree | 2368093c270f3258ca224c74ed744b9c7255e4dc | |
parent | 382758355998951cea2b9f6ad1fb83e7dc4c3a02 (diff) | |
download | numpy-be9b5759ef0893b6e8bf03ca48a5ed83d7b9dc75.tar.gz |
BUG: remove `sys` from the type stubs
It is the builtin sys module, which people should not be accessing
through the NumPy namespace.
-rw-r--r-- | numpy/__init__.pyi | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/__init__.pyi b/numpy/__init__.pyi index 3d40682e7..26673d955 100644 --- a/numpy/__init__.pyi +++ b/numpy/__init__.pyi @@ -487,7 +487,6 @@ split: Any stack: Any str0: Any string_: Any -sys: Any take_along_axis: Any testing: Any tile: Any |