8000 ENH: Pypy fixes by mattip · Pull Request #8103 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: Pypy fixes #8103

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 4 commits into from
Oct 8, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
STY: add spaces and endif documentation
  • Loading branch information
mattip committed Oct 1, 2016
commit 46e47d8d65da576842ef0232a7080f061df7c113
4 changes: 2 additions & 2 deletions numpy/core/src/multiarray/shape.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ PyArray_Resize(PyArrayObject *self, PyArray_Dims *newshape, int refcheck,
"Use the resize function or refcheck=False");

return NULL;
#else
#else
refcnt = PyArray_REFCOUNT(self);
#endif
#endif /* PYPY_VERSION */
}
else {
refcnt = 1;
Expand Down
Loading
0