diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-10-07 12:27:17 +0200 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2020-10-07 12:47:24 +0200 |
commit | 065b300e1280b139f7463fa33dc4ddc32744ec0c (patch) | |
tree | 24bc497fa29cebaa471df9a9482c536430c62aa1 | |
parent | 248eee330407fc4b36375c0fb42098e403cd2d68 (diff) | |
download | numpy-065b300e1280b139f7463fa33dc4ddc32744ec0c.tar.gz |
MAINT: Ignore three builtin modules present in the numpy namespace
-rwxr-xr-x | tools/functions_missing_types.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/functions_missing_types.py b/tools/functions_missing_types.py index a32e72dad..9df0c6a51 100755 --- a/tools/functions_missing_types.py +++ b/tools/functions_missing_types.py @@ -27,6 +27,9 @@ EXCLUDE_LIST = { "division", "print_function", "warnings", + "sys", + "os", + "math", # Accidentally public, deprecated, or shouldn't be used "Tester", "alen", |