@@ -929,12 +929,12 @@ def __init__(self, ax, *args,
929
929
", " .join (map (repr , kwargs ))
930
930
)
931
931
932
- allsegs = _api . deprecated ( "3.8" , pending = True )( property (lambda self : [
932
+ allsegs = property (lambda self : [
933
933
[subp .vertices for subp in p ._iter_connected_components ()]
934
- for p in self .get_paths ()]))
935
- allkinds = _api . deprecated ( "3.8" , pending = True )( property (lambda self : [
934
+ for p in self .get_paths ()])
935
+ allkinds = property (lambda self : [
936
936
[subp .codes for subp in p ._iter_connected_components ()]
937
- for p in self .get_paths ()]))
937
+ for p in self .get_paths ()])
938
938
tcolors = _api .deprecated ("3.8" )(property (lambda self : [
939
939
(tuple (rgba ),) for rgba in self .to_rgba (self .cvalues , self .alpha )]))
940
940
tlinewidths = _api .deprecated ("3.8" )(property (lambda self : [
@@ -1388,7 +1388,6 @@ def _find_nearest_contour(self, xy, indices=None):
1388
1388
1389
1389
return idx_level_min , idx_vtx_min , proj_min
1390
1390
1391
- @_api .deprecated ("3.8" )
1392
1391
def find_nearest_contour (self , x , y , indices = None , pixel = True ):
1393
1392
"""
1394
1393
Find the point in the contour plot that is closest to ``(x, y)``.
0 commit comments