From 3a20f23c8978838a1090f0f88c8ba94c11318113 Mon Sep 17 00:00:00 2001 From: dabana Date: Mon, 10 Sep 2018 12:35:23 -0400 Subject: [PATCH 1/2] clarifications to **im_show()** doc regarding issues #12065 and #10112. --- lib/matplotlib/axes/_axes.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/matplotlib/axes/_axes.py b/lib/matplotlib/axes/_axes.py index 3e3e92db43bd..d8e77961b746 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -5345,8 +5345,10 @@ def imshow(self, X, cmap=None, norm=None, aspect=None, 'lanczos'. If *interpolation* is 'none', then no interpolation is performed - on the Agg, ps and pdf backends. Other backends will fall back to - 'nearest'. + on the Agg, ps, pdf and svg backends. Other backends will fall back to + 'nearest'. Note that most SVG renders perform interpolation at + rendering and that the default interpolation method they implement + may differ. See :doc:`/gallery/images_contours_and_fields/interpolation_methods` From 91808a754b46988e7194060f0e74e573ea24eaa7 Mon Sep 17 00:00:00 2001 From: dabana Date: Mon, 10 Sep 2018 13:11:34 -0400 Subject: [PATCH 2/2] pass flake 8 compliance check --- lib/matplotlib/axes/_axes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/matplotlib/axes/_axes.py b/lib/matplotlib/axes/_axes.py index d8e77961b746..0d5b7d981f4e 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -5345,10 +5345,10 @@ def imshow(self, X, cmap=None, norm=None, aspect=None, 'lanczos'. If *interpolation* is 'none', then no interpolation is performed - on the Agg, ps, pdf and svg backends. Other backends will fall back to - 'nearest'. Note that most SVG renders perform interpolation at + on the Agg, ps, pdf and svg backends. Other backends will fall back + to 'nearest'. Note that most SVG renders perform interpolation at rendering and that the default interpolation method they implement - may differ. + may differ. See :doc:`/gallery/images_contours_and_fields/interpolation_methods`