Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings

Fix two undefined names#10938

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
timhoffm merged 2 commits intomatplotlib:masterfromcclauss:fix-undefined-names
Apr 2, 2018
Merged
Show file tree
Hide file tree
Changes fromall 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
2 changes: 1 addition & 1 deletionlib/matplotlib/pyplot.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2834,7 +2834,7 @@ def spy(
__ret = gca().spy(
Z=Z, precision=precision, marker=marker,
markersize=markersize, aspect=aspect, origin=origin, **kwargs)
if isinstance(ret, cm.ScalarMappable): sci(__ret)
if isinstance(__ret, cm.ScalarMappable): sci(__ret)
return __ret

# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
Expand Down
1 change: 1 addition & 0 deletionslib/matplotlib/testing/decorators.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
from distutils.version import StrictVersion
import functools
import inspect
import os
from pathlib import Path
import shutil
Expand Down
2 changes: 1 addition & 1 deletiontools/boilerplate.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -149,7 +149,7 @@ def boilerplate_gen():
'pcolormesh': 'sci(__ret)',
'hist2d': 'sci(__ret[-1])',
'imshow': 'sci(__ret)',
'spy': 'if isinstance(ret, cm.ScalarMappable): sci(__ret)',
'spy': 'if isinstance(__ret, cm.ScalarMappable): sci(__ret)',
'quiver': 'sci(__ret)',
'specgram': 'sci(__ret[-1])',
'streamplot': 'sci(__ret.lines)',
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp