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.
2 parents eece60a + 78904b6 commit c65ce46Copy full SHA for c65ce46
doc/api/next_api_changes/deprecations/26894-AL.rst
@@ -0,0 +1,6 @@
1
+*interval* parameter of ``TimerBase.start``
2
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
+
4
+Setting the timer *interval* while starting it is deprecated. The interval can
5
+be specified instead in the timer constructor, or by setting the
6
+``timer.interval`` attribute.
lib/matplotlib/backend_bases.py
@@ -1117,6 +1117,7 @@ def __del__(self):
1117
"""Need to stop timer and possibly disconnect timer."""
1118
self._timer_stop()
1119
1120
+ @_api.delete_parameter("3.9", "interval", alternative="timer.interval")
1121
def start(self, interval=None):
1122
"""
1123
Start the timer object.
0 commit comments