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

Skip to content

Commit 041bd4d

Browse files
committed
Change docstring to reflect new default interpolation
1 parent 7e4924f commit 041bd4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/image.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -733,8 +733,8 @@ class NonUniformImage(AxesImage):
733733
def __init__(self, ax, **kwargs):
734734
"""
735735
kwargs are identical to those for AxesImage, except
736-
that 'interpolation' defaults to 'nearest', and 'bilinear'
737-
is the only alternative.
736+
that 'nearest', and 'bilinear' are the only supported 'interpolation'
737+
options.
738738
"""
739739
interp = kwargs.pop('interpolation', 'nearest')
740740
AxesImage.__init__(self, ax,

0 commit comments

Comments
 (0)