@@ -724,27 +724,27 @@ def setp(h, *args, **kwargs):
724724 If you want to see all the properties that can be set, and their
725725 possible values, you can do
726726
727-
728727 >>> setp(line)
729- ... long output listing omitted'
728+ ... long output listing omitted
730729
731730 setp operates on a single instance or a list of instances. If you
732731 are in query mode introspecting the possible values, only the first
733732 instance in the sequence is used. When actually setting values,
734733 all the instances will be set. Eg, suppose you have a list of two
735734 lines, the following will make both lines thicker and red
736735
737- >>> x = arange(0,1.0,0.01)
738- >>> y1 = sin(2*pi*x)
739- >>> y2 = sin(4*pi*x)
740- >>> lines = plot(x, y1, x, y2)
741- >>> setp(lines, linewidth=2, color='r')
736+ >>> x = arange(0,1.0,0.01)
737+ >>> y1 = sin(2*pi*x)
738+ >>> y2 = sin(4*pi*x)
739+ >>> lines = plot(x, y1, x, y2)
740+ >>> setp(lines, linewidth=2, color='r')
742741
743742 setp works with the matlab(TM) style string/value pairs or with
744743 python kwargs. For example, the following are equivalent
745744
746- >>> setp(lines, 'linewidth', 2, 'color', r') # matlab style
747- >>> setp(lines, linewidth=2, color='r') # python style
745+ >>> setp(lines, 'linewidth', 2, 'color', r') # matlab style
746+ >>> setp(lines, linewidth=2, color='r') # python style
747+
748748 """
749749
750750 insp = ArtistInspector (h )
0 commit comments