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
6 changes: 6 additions & 0 deletions doc/api/next_api_changes/2019-02-21-AL.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Deprecations
````````````

The ``backend_wx.IDLE_DELAY`` global, being unused and only relevant to the now
removed wx "idling" code, is deprecated (note that as it is a module-level
global, no deprecation warning is emitted when accessing it).
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_wx.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def write(self, msg):
PIXELS_PER_INCH = 75

# Delay time for idle checks
IDLE_DELAY = 5
IDLE_DELAY = 5 # Documented as deprecated as of Matplotlib 3.1.


def error_msg_wx(msg, parent=None):
Expand Down