-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Add test to colorbar.py to see if ax is an object as returned by plt.subplots #8733
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
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
67d2324
Make histogram example figures fit on web page
dstansby 719d556
Clarify how a FancyArrowPatch behaves
dstansby 5d88cca
Fix typos
taehoonlee 22488ff
Various cleanups to backends code.
anntzer df9e1d7
removing sgskip
choldgraf bb29bb6
Clarify in display units
dstansby f76a010
Parameterize test_fill_between and test_fill_betweenx
patniharshit a0ccb78
Add ids to test_fill_between tests
patniharshit 2e6b968
colorbar.py: added test to see if parents are an object and to flatte…
jklymak 7146ae6
Fixed PEP 8 error
jklymak 1774e56
Merge pull request #8709 from taehoonlee/fix_typos
QuLogic 34fda3e
Merge pull request #8729 from patniharshit/test_fill_between
QuLogic 7fd3e25
Fixed so that we check to see if the object is an ndarray
jklymak 80e9ec1
simplified logic to take into account all possible input cases
jklymak 622307f
Merge pull request #8614 from dstansby/hist-example
tacaswell 95cfdeb
Merge pull request #8725 from choldgraf/rem_sgskip
tacaswell 1383228
Merge pull request #8703 from dstansby/fancyarrowpatch-clarify
anntzer 4d26d74
Allow divmod to be overridden by numpy
dstansby 60f547a
Merge pull request #8735 from dstansby/fix-tests
dstansby 90ded74
Merge pull request #8711 from anntzer/backends-cleanup
QuLogic a5053c3
colorbar.py: added test to see if parents are an object and to flatte…
jklymak e178d2b
Fixed PEP 8 error
jklymak c4ea69a
Fixed so that we check to see if the object is an ndarray
jklymak 0e31a22
simplified logic to take into account all possible input cases
jklymak 3b2e06f
Rebased, hopefully get rid of CI error
jklymak b82411a
Rebased, hopefully get rid of CI error
jklymak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed so that we check to see if the object is an ndarray
- Loading branch information
commit c4ea69a84523303e19dfd1713c6d823f63d98719
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would replace this and the lines below by
(there will never be enough axes for this to be a performance issue...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that seems to work. Very clever!