Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0d33b1f

Browse filesBrowse files
authored
Merge pull request #6577 from anntzer/fix-mlab-rec-join
Fix mlab.rec_join.
2 parents a72574d + 90a7133 commit 0d33b1f
Copy full SHA for 0d33b1f

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎lib/matplotlib/mlab.py

Copy file name to clipboardExpand all lines: lib/matplotlib/mlab.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2611,7 +2611,7 @@ def mapped_r2field(name):
26112611

26122612
if jointype != 'inner' and defaults is not None:
26132613
# fill in the defaults enmasse
2614-
newrec_fields = list(six.iterkeys(newrec.dtype.fields.keys))
2614+
newrec_fields = list(six.iterkeys(newrec.dtype.fields))
26152615
for k, v in six.iteritems(defaults):
26162616
if k in newrec_fields:
26172617
newrec[k] = v

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.