8000 BUG: Fix regression in np.ma.load in gh-10055 by eric-wieser · Pull Request #10190 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content
< 8000 div hidden="hidden" data-view-component="true" class="js-stale-session-flash stale-session-flash flash flash-warn flash-full"> Dismiss alert

BUG: Fix regression in np.ma.load in gh-10055 #10190

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
Dec 10, 2017
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
BUG: Fix regression in np.ma.load in gh-10055
  • Loading branch information
eric-wieser committed Dec 10, 2017
commit 8671dc0dd968d33d99ad1a9c6ce7a29e84dff953
4 changes: 2 additions & 2 deletions numpy/ma/core.py
593E
Original file line number Diff line number Diff line change
Expand Up @@ -7918,9 +7918,9 @@ def load(F):
"""
if not hasattr(F, 'readline'):
with open(F, 'r') as F:
pickle.load(F)
return pickle.load(F)
else:
pickle.load(F)
return pickle.load(F)


def loads(strg):
Expand Down
0