@@ -4519,8 +4519,7 @@ def legend(self, *args, **kwargs):
45194519 instance. If *prop* is a dictionary, a new instance will be
45204520 created with *prop*. If *None*, use rc settings.
45214521
4522- *fontsize*: [ size in points | 'xx-small' | 'x-small' |
4523- 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' ]
4522+ *fontsize*: [ size in points | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' ]
45244523 Set the font size. May be either a size string, relative to
45254524 the default font size, or an absolute font size in points. This
45264525 argument is only used if prop is not specified.
@@ -7069,7 +7068,7 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
70697068 parameter, i.e. when interpolation is one of: 'sinc',
70707069 'lanczos' or 'blackman'
70717070
7072- Additional kwargs are :class:`~matplotlib.artist.Artist` properties:
7071+ Additional kwargs are :class:`~matplotlib.artist.Artist` properties.
70737072
70747073 %(Artist)s
70757074
@@ -7365,13 +7364,13 @@ def pcolor(self, *args, **kwargs):
73657364
73667365 x = X .compressed ()
73677366 y = Y .compressed ()
7368-
7367+
73697368 # Transform from native to data coordinates?
73707369 t = collection ._transform
73717370 if (not isinstance (t , mtransforms .Transform )
73727371 and hasattr (t , '_as_mpl_transform' )):
73737372 t = t ._as_mpl_transform (self .axes )
7374-
7373+
73757374 if t and any (t .contains_branch_seperately (self .transData )):
73767375 trans_to_data = t - self .transData
73777376 pts = np .vstack ([x , y ]).T .astype (np .float )
@@ -7505,13 +7504,13 @@ def pcolormesh(self, *args, **kwargs):
75057504 collection .autoscale_None ()
75067505
75077506 self .grid (False )
7508-
7507+
75097508 # Transform from native to data coordinates?
75107509 t = collection ._transform
75117510 if (not isinstance (t , mtransforms .Transform )
75127511 and hasattr (t , '_as_mpl_transform' )):
75137512 t = t ._as_mpl_transform (self .axes )
7514-
7513+
75157514 if t and any (t .contains_branch_seperately (self .transData )):
75167515 trans_to_data = t - self .transData
75177516 pts = np .vstack ([X , Y ]).T .astype (np .float )
0 commit comments