File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -894,8 +894,7 @@ def set_label(self, s):
894
894
Parameters
895
895
----------
896
896
s : object
897
- *s* will be converted to a string by calling `str` (`unicode` on
898
- Py2).
897
+ *s* will be converted to a string by calling `str`.
899
898
900
899
.. ACCEPTS: object
901
900
"""
Original file line number Diff line number Diff line change @@ -1941,9 +1941,8 @@ def _topmost_artist(
1941
1941
"""Get the topmost artist of a list.
1942
1942
1943
1943
In case of a tie, return the *last* of the tied artists, as it will be
1944
- drawn on top of the others. `max` returns the first maximum in case of ties
1945
- (on Py2 this is undocumented but true), so we need to iterate over the list
1946
- in reverse order.
1944
+ drawn on top of the others. `max` returns the first maximum in case of
1945
+ ties, so we need to iterate over the list in reverse order.
1947
1946
"""
1948
1947
return _cached_max (reversed (artists ))
1949
1948
You can’t perform that action at this time.
0 commit comments