Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3fdd527

Browse files
committed
bump warnings
1 parent ce76875 commit 3fdd527

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/matplotlib/backend_bases.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2013,7 +2013,9 @@ def enter_notify_event(self, guiEvent=None, xy=None):
20132013
else:
20142014
x = None
20152015
y = None
2016-
warn_deprecated('2.2', 'enter_notify_event expects a location but your backend did not pass one.')
2016+
cbook.warn_deprecated('3.0', 'enter_notify_event expects a '
2017+
'location but '
2018+
'your backend did not pass one.')
20172019

20182020
event = LocationEvent('figure_enter_event', self, x, y, guiEvent)
20192021
self.callbacks.process('figure_enter_event', event)

0 commit comments

Comments
 (0)