8000 interkeys should be called on the dict and not the keys · matplotlib/matplotlib@cbec32b · GitHub
[go: up one dir, main page]

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 cbec32b

Browse files
committed
interkeys should be called on the dict and not the keys
1 parent 222ed14 commit cbec32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/mlab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2615,7 +2615,7 @@ def mapped_r2field(name):
26152615

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

0 commit comments

Comments
 (0)
0