8000 BUG: missing comma disabled some header checks by juliantaylor · Pull Request #8694 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG: missing comma disabled some header checks #8694

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
Feb 25, 2017
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion numpy/core/setup_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def check_api_version(apiversion, codegen_dir):
"xmmintrin.h", # SSE
"emmintrin.h", # SSE2
"features.h", # for glibc version linux
"xlocale.h" # see GH#8367
"xlocale.h", # see GH#8367
"dlfcn.h", # dladdr
]

Expand Down
1 change: 1 addition & 0 deletions numpy/core/src/multiarray/temp_elide.c
59BF
Original file line number Diff line numberDiff line change
Expand Up @@ -3,6 +3,7 @@

#define NPY_NO_DEPRECATED_API NPY_API_VERSION
#define _MULTIARRAYMODULE
#include "npy_config.h"
#include "numpy/arrayobject.h"

#define NPY_NUMBER_MAX(a, b) ((a) > (b) ? (a) : (b))
Expand Down
0