Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Remove the 'hold' kwarg from codebase #10485

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 4 commits into from
Mar 29, 2018
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions doc/api/axes_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -652,8 +652,6 @@ Other
Axes.get_default_bbox_extra_artists
Axes.get_transformed_clip_path_and_affine
Axes.has_data
Axes.hold
Axes.ishold


Inheritance
Expand Down
7 changes: 7 additions & 0 deletions doc/api/next_api_changes/2018-02-20-DS-hold.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Hold machinery removed
----------------------

Setting or unsetting ``hold`` (deprecated in version 2.1) has now
been completely removed. Matplotlib now always behaves as if ``hold=True``.
To clear an axes you can manually use :meth:`~.axes.Axes.cla()`,
or to clear an entire figure use :meth:`~.figure.Figure.clf()`.
Loading