8000 ndarray.put should respect the writeable flag. Fixes #4465 by jarl-haggerty · Pull Request #5132 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ndarray.put should respect the writeable flag. Fixes #4465 #5132

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

Closed
wants to merge 3 commits into from
Closed
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
Prev Previous commit
removed irrelevant change
  • Loading branch information
jarl-haggerty committed Sep 27, 2014
commit 11944f1db3ba666ea8c4b16820cd72413b4ef8f5
2 changes: 0 additions & 2 deletions numpy/core/_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,6 @@ def _index_fields(ary, fields):

_pep3118_native_map = {
'?': '?',
'c': 'c',
'b': 'b',
'B': 'B',
'h': 'h',
Expand All @@ -337,7 +336,6 @@ def _index_fields(ary, fields):

_pep3118_standard_map = {
'?': '?',
'c': 'c',
'b': 'b',
'B': 'B',
'h': 'i2',
Expand Down
0