Skip to content
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