summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/src/common/npy_config.h2
-rw-r--r--numpy/core/tests/test_umath.py2
-rw-r--r--numpy/tests/test_public_api.py6
3 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/src/common/npy_config.h b/numpy/core/src/common/npy_config.h
index 4493409bb..27328aa73 100644
--- a/numpy/core/src/common/npy_config.h
+++ b/numpy/core/src/common/npy_config.h
@@ -8,7 +8,7 @@
#include "numpy/npy_cpu.h"
#include "numpy/npy_os.h"
-/* blacklist */
+/* blocklist */
/* Disable broken Sun Workshop Pro math functions */
#ifdef __SUNPRO_C
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py
index f836af168..941d99521 100644
--- a/numpy/core/tests/test_umath.py
+++ b/numpy/core/tests/test_umath.py
@@ -23,7 +23,7 @@ def on_powerpc():
def bad_arcsinh():
- """The blacklisted trig functions are not accurate on aarch64 for
+ """The blocklisted trig functions are not accurate on aarch64 for
complex256. Rather than dig through the actual problem skip the
test. This should be fixed when we can move past glibc2.17
which is the version in manylinux2014
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py
index cc4c5d8c5..a9d6da01c 100644
--- a/numpy/tests/test_public_api.py
+++ b/numpy/tests/test_public_api.py
@@ -66,14 +66,14 @@ def test_numpy_namespace():
'str': 'builtins.str',
'unicode': 'builtins.str',
}
- whitelist = dict(undocumented, **builtins)
+ allowlist = dict(undocumented, **builtins)
else:
# after 3.7, we override dir to not show these members
- whitelist = undocumented
+ allowlist = undocumented
bad_results = check_dir(np)
# pytest gives better error messages with the builtin assert than with
# assert_equal
- assert bad_results == whitelist
+ assert bad_results == allowlist
@pytest.mark.parametrize('name', ['testing', 'Tester'])