10000 Deprecate backend_wx.IDLE_DELAY. · matplotlib/matplotlib@b8e1a01 · GitHub
[go: up one dir, main page]

Skip to content

Commit b8e1a01

Browse files
committed
Deprecate backend_wx.IDLE_DELAY.
per changelog.
1 parent a276243 commit b8e1a01

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Deprecations
2+
````````````
3+
4+
The ``backend_wx.IDLE_DELAY`` global, being unused and only relevant to the now
5+
removed wx "idling" code, is deprecated (note that as it is a module-level
6+
global, no deprecation warning is emitted when accessing it).

lib/matplotlib/backends/backend_wx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def write(self, msg):
7575
PIXELS_PER_INCH = 75
7676

7777
# Delay time for idle checks
78-
IDLE_DELAY = 5
78+
IDLE_DELAY = 5 # Documented as deprecated as of Matplotlib 3.1.
7979

8080

8181
def error_msg_wx(msg, parent=None):

0 commit comments

Comments
 (0)
0