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

Skip to content

Commit e601378

Browse files
authored
Merge pull request #13249 from anntzer/deprecate-unused
Deprecate an unused "internal" API.
2 parents 9c8dca6 + eb8392b commit e601378

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Deprecations
2+
````````````
3+
4+
``mpl_toolkits.axisartist.axis_artist.UnimplementedException`` is deprecated.

lib/mpl_toolkits/axisartist/axis_artist.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888

8989
import numpy as np
9090

91-
from matplotlib import rcParams
91+
from matplotlib import cbook, rcParams
9292
import matplotlib.artist as martist
9393
import matplotlib.text as mtext
9494
import matplotlib.font_manager as font_manager
@@ -153,6 +153,7 @@ def draw(self, renderer):
153153
renderer.close_group('line2d')
154154

155155

156+
@cbook.deprecated("3.1")
156157
class UnimplementedException(Exception):
157158
pass
158159

0 commit comments

Comments
 (0)