summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2020-10-07 12:27:17 +0200
committerBas van Beek <b.f.van.beek@vu.nl>2020-10-07 12:47:24 +0200
commit065b300e1280b139f7463fa33dc4ddc32744ec0c (patch)
tree24bc497fa29cebaa471df9a9482c536430c62aa1
parent248eee330407fc4b36375c0fb42098e403cd2d68 (diff)
downloadnumpy-065b300e1280b139f7463fa33dc4ddc32744ec0c.tar.gz
MAINT: Ignore three builtin modules present in the numpy namespace
-rwxr-xr-xtools/functions_missing_types.py3
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",