diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-04-05 09:37:39 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-04-05 09:37:39 +0200 |
commit | 524208a537aed9765aac1d7eb553eac9b82d32f1 (patch) | |
tree | ab2d9876876cb15595b668e7d2950ddb9c045710 /numpy/__init__.py | |
parent | f1f9e14e5d63aee6c8309ad425e3928192c0873b (diff) | |
download | numpy-524208a537aed9765aac1d7eb553eac9b82d32f1.tar.gz |
MAINT: add a warning filter for possible "ndarray size changed" Cython noise.
See gh-432 for details. Motivation for adding this now is the discussion
on gh-5343.
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 39933e8ca..d4ef54d83 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -224,3 +224,4 @@ else: import warnings warnings.filterwarnings("ignore", message="numpy.dtype size changed") warnings.filterwarnings("ignore", message="numpy.ufunc size changed") + warnings.filterwarnings("ignore", message="numpy.ndarray size changed") |