8000 Change docstring to reflect new default interpolation · matplotlib/matplotlib@a37968a · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a37968a

Browse files
committed
Change docstring to reflect new default interpolation
1 parent 53d7ce9 commit a37968a

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
@@ -714,8 +714,8 @@ class NonUniformImage(AxesImage):
714714
def __init__(self, ax, **kwargs):
715715
"""
716716
kwargs are identical to those for AxesImage, except
717-
that 'interpolation' defaults to 'nearest', and 'bilinear'
718-
is the only alternative.
717+
that 'nearest', and 'bilinear' are the only supported 'interpolation'
718+
options.
719719
"""
720720
interp = kwargs.pop('interpolation', 'nearest')
721721
AxesImage.__init__(self, ax,

0 commit comments

Comments
 (0)
0