From c9d0bf5ab32fe8c3982179622c86ed3713e2df08 Mon Sep 17 00:00:00 2001 From: Federico Ariza Date: Wed, 26 Mar 2014 16:53:59 -0400 Subject: [PATCH 1/2] doc changed --- lib/matplotlib/artist.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/matplotlib/artist.py b/lib/matplotlib/artist.py index bfe994429f6c..2bdee45ea012 100644 --- a/lib/matplotlib/artist.py +++ b/lib/matplotlib/artist.py @@ -644,6 +644,9 @@ def set_clip_on(self, b): """ Set whether artist uses clipping. + When False, If figure range and data range don't line up + the Artist it might run off and produce unexpected results. + ACCEPTS: [True | False] """ self._clipon = b From 8565f77bc0e1777168fb52916bc29bc6d653eacc Mon Sep 17 00:00:00 2001 From: Federico Ariza Date: Mon, 5 May 2014 15:57:31 -0400 Subject: [PATCH 2/2] doc string mod --- lib/matplotlib/artist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/matplotlib/artist.py b/lib/matplotlib/artist.py index 2bdee45ea012..583b2c1b2a4a 100644 --- a/lib/matplotlib/artist.py +++ b/lib/matplotlib/artist.py @@ -644,8 +644,8 @@ def set_clip_on(self, b): """ Set whether artist uses clipping. - When False, If figure range and data range don't line up - the Artist it might run off and produce unexpected results. + When False artists will be visible out side of the axes which + can lead to unexpected results. ACCEPTS: [True | False] """