8000 MNT: reran boilerplate.py · matplotlib/matplotlib@e26b943 · GitHub
[go: up one dir, main page]

Skip to content

Commit e26b943

Browse files
committed
MNT: reran boilerplate.py
1 parent 5cc858f commit e26b943

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

lib/matplotlib/pyplot.py

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2600,7 +2600,7 @@ def broken_barh(xranges, yrange, hold=None, **kwargs):
26002600
# This function was autogenerated by boilerplate.py. Do not edit as
26012601
# changes will be lost
26022602
@_autogen_docstring(Axes.boxplot)
2603-
def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
2603+
def boxplot(x, notch=False, sym=u'b+', vert=True, whis=1.5, positions=None,
26042604
widths=None, patch_artist=False, bootstrap=None, usermedians=None,
26052605
conf_intervals=None, hold=None):
26062606
ax = gca()
@@ -2625,7 +2625,7 @@ def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
26252625
@_autogen_docstring(Axes.cohere)
26262626
def cohere(x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
26272627
window=mlab.window_hanning, noverlap=0, pad_to=None,
2628-
sides='default', scale_by_freq=None, hold=None, **kwargs):
2628+
sides=u'default', scale_by_freq=None, hold=None, **kwargs):
26292629
ax = gca()
26302630
# allow callers to override the hold state by passing hold=True|False
26312631
washold = ax.ishold()
@@ -2722,7 +2722,7 @@ def csd(x, y, NFFT=None, Fs=None, Fc=None, detrend=None, window=None,
27222722
# This function was autogenerated by boilerplate.py. Do not edit as
27232723
# changes will be lost
27242724
@_autogen_docstring(Axes.errorbar)
2725-
def errorbar(x, y, yerr=None, xerr=None, fmt='-', ecolor=None, elinewidth=None,
2725+
def errorbar(x, y, yerr=None, xerr=None, fmt=u'-', ecolor=None, elinewidth=None,
27262726
capsize=3, barsabove=False, lolims=False, uplims=False,
27272727
xlolims=False, xuplims=False, errorevery=1, capthick=None,
27282728
hold=None, **kwargs):
@@ -2747,8 +2747,8 @@ def errorbar(x, y, yerr=None, xerr=None, fmt='-', ecolor=None, elinewidth=None,
27472747
# This function was autogenerated by boilerplate.py. Do not edit as
27482748
# changes will be lost
27492749
@_autogen_docstring(Axes.eventplot)
2750-
def eventplot(positions, orientation='horizontal', lineoffsets=1,
2751-
linelengths=1, linewidths=None, colors=None, linestyles='solid',
2750+
def eventplot(positions, orientation=u'horizontal', lineoffsets=1,
2751+
linelengths=1, linewidths=None, colors=None, linestyles=u'solid',
27522752
hold=None, **kwargs):
27532753
ax = gca()
27542754
# allow callers to override the hold state by passing hold=True|False
@@ -2825,9 +2825,9 @@ def fill_betweenx(y, x1, x2=0, where=None, hold=None, **kwargs):
28252825
# This function was autogenerated by boilerplate.py. Do not edit as
28262826
# changes will be lost
28272827
@_autogen_docstring(Axes.hexbin)
2828-
def hexbin(x, y, C=None, gridsize=100, bins=None, xscale='linear',
2829-
yscale='linear', extent=None, cmap=None, norm=None, vmin=None,
2830-
vmax=None, alpha=None, linewidths=None, edgecolors='none',
2828+
def hexbin(x, y, C=None, gridsize=100, bins=None, xscale=u'linear',
2829+
yscale=u'linear', extent=None, cmap=None, norm=None, vmin=None,
2830+
vmax=None, alpha=None, linewidths=None, edgecolors=u'none',
28312831
reduce_C_function=np.mean, mincnt=None, marginals=False, hold=None,
28322832
**kwargs):
28332833
ax = gca()
@@ -2853,7 +2853,7 @@ def hexbin(x, y, C=None, gridsize=100, bins=None, xscale='linear',
28532853
# changes will be lost
28542854
@_autogen_docstring(Axes.hist)
28552855
def hist(x, bins=10, range=None, normed=False, weights=None, cumulative=False,
2856-
bottom=None, histtype='bar', align='mid', orientation='vertical',
2856+
bottom=None, histtype=u'bar', align=u'mid', orientation=u'vertical',
28572857
rwidth=None, log=False, color=None, label=None, stacked=False,
28582858
hold=None, **kwargs):
28592859
ax = gca()
@@ -2897,7 +2897,7 @@ def hist2d(x, y, bins=10, range=None, normed=False, weights=None, cmin=None,
28972897
# This function was autogenerated by boilerplate.py. Do not edit as
28982898
# changes will be lost
28992899
@_autogen_docstring(Axes.hlines)
2900-
def hlines(y, xmin, xmax, colors='k', linestyles='solid', label='',
2900+
def hlines(y, xmin, xmax, colors=u'k', linestyles=u'solid', label=u'',
29012901
hold=None, **kwargs):
29022902
ax = gca()
29032903
# allow callers to override the hold state by passing hold=True|False
@@ -3078,7 +3078,8 @@ def plot(*args, **kwargs):
30783078
# This function was autogenerated by boilerplate.py. Do not edit as
30793079
# changes will be lost
30803080
@_autogen_docstring(Axes.plot_date)
3081-
def plot_date(x, y, fmt='o', tz=None, xdate=True, ydate=False, hold=None,
3081+
3082+
def plot_date(x, y, fmt=u'bo', tz=None, xdate=True, ydate=False, hold=None,
30823083
**kwargs):
30833084
ax = gca()
30843085
# allow callers to override the hold state by passing hold=True|False
@@ -3157,7 +3158,7 @@ def quiverkey(*args, **kw):
31573158
# This function was autogenerated by boilerplate.py. Do not edit as
31583159
# changes will be lost
31593160
@_autogen_docstring(Axes.scatter)
3160-
def scatter(x, y, s=20, c='b', marker='o', cmap=None, norm=None, vmin=None,
3161+
def scatter(x, y, s=20, c=u'b', marker=u'o', cmap=None, norm=None, vmin=None,
31613162
vmax=None, alpha=None, linewidths=None, verts=None, hold=None,
31623163
**kwargs):
31633164
ax = gca()
@@ -3295,7 +3296,7 @@ def step(x, y, *args, **kwargs):
32953296
# changes will be lost
32963297
@_autogen_docstring(Axes.streamplot)
32973298
def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
3298-
norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1,
3299+
norm=None, arrowsize=1, arrowstyle=u'-|>', minlength=0.1,
32993300
transform=None, zorder=1, hold=None):
33003301
ax = gca()
33013302
# allow callers to override the hold state by passing hold=True|False
@@ -3390,7 +3391,7 @@ def triplot(*args, **kwargs):
33903391
# This function was autogenerated by boilerplate.py. Do not edit as
33913392
# changes will be lost
33923393
@_autogen_docstring(Axes.vlines)
3393-
def vlines(x, ymin, ymax, colors='k', linestyles='solid', label='',
3394+
def vlines(x, ymin, ymax, colors=u'k', linestyles=u'solid', label=u'',
33943395
hold=None, **kwargs):
33953396
ax = gca()
33963397
# allow callers to override the hold state by passing hold=True|False
@@ -3456,7 +3457,7 @@ def cla():
34563457
# This function was autogenerated by boilerplate.py. Do not edit as
34573458
# changes will be lost
34583459
@docstring.copy_dedent(Axes.grid)
3459-
def grid(b=None, which='major', axis='both', **kwargs):
3460+
def grid(b=None, which=u'major', axis=u'both', **kwargs):
34603461
ret = gca().grid(b=b, which=which, axis=axis, **kwargs)
34613462
draw_if_interactive()
34623463
return ret
@@ -3504,15 +3505,15 @@ def ticklabel_format(**kwargs):
35043505
# This function was autogenerated by boilerplate.py. Do not edit as
35053506
# changes will be lost
35063507
@docstring.copy_dedent(Axes.locator_params)
3507-
def locator_params(axis='both', tight=None, **kwargs):
3508+
def locator_params(axis=u'both', tight=None, **kwargs):
35083509
ret = gca().locator_params(axis= A89C axis, tight=tight, **kwargs)
35093510
draw_if_interactive()
35103511
return ret
35113512

35123513
# This function was autogenerated by boilerplate.py. Do not edit as
35133514
# changes will be lost
35143515
@docstring.copy_dedent(Axes.tick_params)
3515-
def tick_params(axis='both', **kwargs):
3516+
def tick_params(axis=u'both', **kwargs):
35163517
ret = gca().tick_params(axis=axis, **kwargs)
35173518
draw_if_interactive()
35183519
return ret
@@ -3528,7 +3529,7 @@ def margins(*args, **kw):
35283529
# This function was autogenerated by boilerplate.py. Do not edit as
35293530
# changes will be lost
35303531
@docstring.copy_dedent(Axes.autoscale)
3531-
def autoscale(enable=True, axis='both', tight=None):
3532+
def autoscale(enable=True, axis=u'both', tight=None):
35323533
ret = gca().autoscale(enable=enable, axis=axis, tight=tight)
35333534
draw_if_interactive()
35343535
return ret

0 commit comments

Comments
 (0)
0