@@ -2620,8 +2620,8 @@ def boxplot(x, notch=False, sym=None, vert=True, whis=1.5, positions=None,
26202620 widths = None , patch_artist = False , bootstrap = None , usermedians = None ,
26212621 conf_intervals = None , meanline = False , showmeans = False , showcaps = True ,
26222622 showbox = True , showfliers = True , boxprops = None , labels = None ,
2623- flierprops = None , medianprops = None , meanprops = None ,
2624- manage_xticks = True , hold = None ):
2623+ flierprops = None , medianprops = None , meanprops = None , capprops = None ,
2624+ whiskerprops = None , manage_xticks = True , hold = None ):
26252625 ax = gca ()
26262626 # allow callers to override the hold state by passing hold=True|False
26272627 washold = ax .ishold ()
@@ -2638,7 +2638,8 @@ def boxplot(x, notch=False, sym=None, vert=True, whis=1.5, positions=None,
26382638 showbox = showbox , showfliers = showfliers ,
26392639 boxprops = boxprops , labels = labels ,
26402640 flierprops = flierprops , medianprops = medianprops ,
2641- meanprops = meanprops , manage_xticks = manage_xticks )
2641+ meanprops = meanprops , capprops = capprops ,
2642+ whiskerprops = whiskerprops , manage_xticks = manage_xticks )
26422643 draw_if_interactive ()
26432644 finally :
26442645 ax .hold (washold )
0 commit comments