8000 FIX: add setter for hold to un-break basemap by tacaswell · Pull Request #12670 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

FIX: add setter for hold to un-break basemap #12670

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
Nov 5, 2018
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
4 changes: 4 additions & 0 deletions lib/matplotlib/axes/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,10 @@ class _AxesBase(martist.Artist):
def _hold(self):
return True

@_hold.setter
def _hold(self, value):
pass

def __str__(self):
return "{0}({1[0]:g},{1[1]:g};{1[2]:g}x{1[3]:g})".format(
type(self).__name__, self._position.bounds)
Expand Down
0