File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
doc/api/next_api_changes/deprecations Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ``Quiver.quiver_doc `` and ``Barbs.barbs_doc ``
2
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
+
4
+ ... are deprecated. These are the doc-string and should not be accessible as
5
+ a named class member.
Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ def _h_arrows(self, length):
722
722
# Mask handling is deferred to the caller, _make_verts.
723
723
return X , Y
724
724
725
- quiver_doc = _quiver_doc
725
+ quiver_doc = _api . deprecated ( "3.7" )( property ( lambda self : _quiver_doc ))
726
726
727
727
728
728
_barbs_doc = r"""
@@ -1179,4 +1179,4 @@ def set_offsets(self, xy):
1179
1179
super ().set_offsets (xy )
1180
1180
self .stale = True
1181
1181
1182
- barbs_doc = _barbs_doc
1182
+ barbs_doc = _api . deprecated ( "3.7" )( property ( lambda self : _barbs_doc ))
You can’t perform that action at this time.
0 commit comments