Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e9204 commit 300459eCopy full SHA for 300459e
3 files changed
doc/api/axis_api.rst
@@ -41,7 +41,6 @@ Inheritance
41
:nosignatures:
42
43
Axis.clear
44
- Axis.cla
45
Axis.get_scale
46
47
doc/api/next_api_changes/removals/23078-GL.rst
@@ -0,0 +1,4 @@
1
+``Axis.cla()`` has been removed
2
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
+
4
+Use `.Axis.clear()` instead.
lib/matplotlib/axis.py
@@ -868,11 +868,6 @@ def clear(self):
868
self.set_units(None)
869
self.stale = True
870
871
- @_api.deprecated("3.4", alternative="`.Axis.clear`")
872
- def cla(self):
873
- """Clear this axis."""
874
- return self.clear()
875
-
876
def reset_ticks(self):
877
"""
878
Re-initialize the major and minor Tick lists.
0 commit comments