8000 MAINT: add warning filter for possible "ndarray size changed" Cython noise by rgommers · Pull Request #5750 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

MAINT: add warning filter for possible "ndarray size changed" Cython noise #5750

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 5, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
MAINT: add a warning filter for possible "ndarray size changed" Cytho…
…n noise.

See gh-432 for details.  Motivation for adding this now is the discussion
on gh-5343.
  • Loading branch information
Ralf Gommers committed Apr 5, 2015
commit 524208a537aed9765aac1d7eb553eac9b82d32f1
1 change: 1 addition & 0 deletions numpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,3 +224,4 @@ def pkgload(*packages, **options):
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")
0