Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ec12ef9

Browse files
committed
MNT: reran boilerplate.py
1 parent 614736d commit ec12ef9

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

lib/matplotlib/pyplot.py

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2588,7 +2588,7 @@ def broken_barh(xranges, yrange, hold=None, **kwargs):
25882588
# This function was autogenerated by boilerplate.py. Do not edit as
25892589
# changes will be lost
25902590
@_autogen_docstring(Axes.boxplot)
2591-
def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
2591+
def boxplot(x, notch=False, sym=u'b+', vert=True, whis=1.5, positions=None,
25922592
widths=None, patch_artist=False, bootstrap=None, usermedians=None,
25932593
conf_intervals=None, hold=None):
25942594
ax = gca()
@@ -2613,7 +2613,7 @@ def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
26132613
@_autogen_docstring(Axes.cohere)
26142614
def cohere(x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
26152615
window=mlab.window_hanning, noverlap=0, pad_to=None,
2616-
sides='default', scale_by_freq=None, hold=None, **kwargs):
2616+
sides=u'default', scale_by_freq=None, hold=None, **kwargs):
26172617
ax = gca()
26182618
# allow callers to override the hold state by passing hold=True|False
26192619
washold = ax.ishold()
@@ -2710,7 +2710,7 @@ def csd(x, y, NFFT=None, Fs=None, Fc=None, detrend=None, window=None,
27102710
# This function was autogenerated by boilerplate.py. Do not edit as
27112711
# changes will be lost
27122712
@_autogen_docstring(Axes.errorbar)
2713-
def errorbar(x, y, yerr=None, xerr=None, fmt='-', ecolor=None, elinewidth=None,
2713+
def errorbar(x, y, yerr=None, xerr=None, fmt=u'-', ecolor=None, elinewidth=None,
27142714
capsize=3, barsabove=False, lolims=False, uplims=False,
27152715
xlolims=False, xuplims=False, errorevery=1, capthick=None,
27162716
hold=None, **kwargs):
@@ -2735,8 +2735,8 @@ def errorbar(x, y, yerr=None, xerr=None, fmt='-', ecolor=None, elinewidth=None,
27352735
# This function was autogenerated by boilerplate.py. Do not edit as
27362736
# changes will be lost
27372737
@_autogen_docstring(Axes.eventplot)
2738-
def eventplot(positions, orientation='horizontal', lineoffsets=1,
2739-
linelengths=1, linewidths=None, colors=None, linestyles='solid',
2738+
def eventplot(positions, orientation=u'horizontal', lineoffsets=1,
2739+
linelengths=1, linewidths=None, colors=None, linestyles=u'solid',
27402740
hold=None, **kwargs):
27412741
ax = gca()
27422742
# allow callers to override the hold state by passing hold=True|False
@@ -2813,9 +2813,9 @@ def fill_betweenx(y, x1, x2=0, where=None, hold=None, **kwargs):
28132813
# This function was autogenerated by boilerplate.py. Do not edit as
28142814
# changes will be lost
28152815
@_autogen_docstring(Axes.hexbin)
2816-
def hexbin(x, y, C=None, gridsize=100, bins=None, xscale='linear',
2817-
yscale='linear', extent=None, cmap=None, norm=None, vmin=None,
2818-
vmax=None, alpha=None, linewidths=None, edgecolors='none',
2816+
def hexbin(x, y, C=None, gridsize=100, bins=None, xscale=u'linear',
2817+
yscale=u'linear', extent=None, cmap=None, norm=None, vmin=None,
2818+
vmax=None, alpha=None, linewidths=None, edgecolors=u'none',
28192819
reduce_C_function=np.mean, mincnt=None, marginals=False, hold=None,
28202820
**kwargs):
28212821
ax = gca()
@@ -2841,7 +2841,7 @@ def hexbin(x, y, C=None, gridsize=100, bins=None, xscale='linear',
28412841
# changes will be lost
28422842
@_autogen_docstring(Axes.hist)
28432843
def hist(x, bins=10, range=None, normed=False, weights=None, cumulative=False,
2844-
bottom=None, histtype='bar', align='mid', orientation='vertical',
2844+
bottom=None, histtype=u'bar', align=u'mid', orientation=u'vertical',
28452845
rwidth=None, log=False, color=None, label=None, stacked=False,
28462846
hold=None, **kwargs):
28472847
ax = gca()
@@ -2885,7 +2885,7 @@ def hist2d(x, y, bins=10, range=None, normed=False, weights=None, cmin=None,
28852885
# This function was autogenerated by boilerplate.py. Do not edit as
28862886
# changes will be lost
28872887
@_autogen_docstring(Axes.hlines)
2888-
def hlines(y, xmin, xmax, colors='k', linestyles='solid', label='',
2888+
def hlines(y, xmin, xmax, colors=u'k', linestyles=u'solid', label=u'',
28892889
hold=None, **kwargs):
28902890
ax = gca()
28912891
# allow callers to override the hold state by passing hold=True|False
@@ -3066,7 +3066,7 @@ def plot(*args, **kwargs):
30663066
# This function was autogenerated by boilerplate.py. Do not edit as
30673067
# changes will be lost
30683068
@_autogen_docstring(Axes.plot_date)
3069-
def plot_date(x, y, fmt='bo', tz=None, xdate=True, ydate=False, hold=None,
3069+
def plot_date(x, y, fmt=u'bo', tz=None, xdate=True, ydate=False, hold=None,
30703070
**kwargs):
30713071
ax = gca()
30723072
# allow callers to override the hold state by passing hold=True|False
@@ -3145,7 +3145,7 @@ def quiverkey(*args, **kw):
31453145
# This function was autogenerated by boilerplate.py. Do not edit as
31463146
# changes will be lost
31473147
@_autogen_docstring(Axes.scatter)
3148-
def scatter(x, y, s=20, c='b', marker='o', cmap=None, norm=None, vmin=None,
3148+
def scatter(x, y, s=20, c=u'b', marker=u'o', cmap=None, norm=None, vmin=None,
31493149
vmax=None, alpha=None, linewidths=None, verts=None, hold=None,
31503150
**kwargs):
31513151
ax = gca()
@@ -3283,7 +3283,7 @@ def step(x, y, *args, **kwargs):
32833283
# changes will be lost
32843284
@_autogen_docstring(Axes.streamplot)
32853285
def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
3286-
norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1,
3286+
norm=None, arrowsize=1, arrowstyle=u'-|>', minlength=0.1,
32873287
transform=None, zorder=1, hold=None):
32883288
ax = gca()
32893289
# allow callers to override the hold state by passing hold=True|False
@@ -3378,7 +3378,7 @@ def triplot(*args, **kwargs):
33783378
# This function was autogenerated by boilerplate.py. Do not edit as
33793379
# changes will be lost
33803380
@_autogen_docstring(Axes.vlines)
3381-
def vlines(x, ymin, ymax, colors='k', linestyles='solid', label='',
3381+
def vlines(x, ymin, ymax, colors=u'k', linestyles=u'solid', label=u'',
33823382
hold=None, **kwargs):
33833383
ax = gca()
33843384
# allow callers to override the hold state by passing hold=True|False
@@ -3444,7 +3444,7 @@ def cla():
34443444
# This function was autogenerated by boilerplate.py. Do not edit as
34453445
# changes will be lost
34463446
@docstring.copy_dedent(Axes.grid)
3447-
def grid(b=None, which='major', axis='both', **kwargs):
3447+
def grid(b=None, which=u'major', axis=u'both', **kwargs):
34483448
ret = gca().grid(b=b, which=which, axis=axis, **kwargs)
34493449
draw_if_interactive()
34503450
return ret
@@ -3492,15 +3492,15 @@ def ticklabel_format(**kwargs):
34923492
# This function was autogenerated by boilerplate.py. Do not edit as
34933493
# changes will be lost
34943494
@docstring.copy_dedent(Axes.locator_params)
3495-
def locator_params(axis='both', tight=None, **kwargs):
3495+
def locator_params(axis=u'both', tight=None, **kwargs):
34963496
ret = gca().locator_params(axis=axis, tight=tight, **kwargs)
34973497
draw_if_interactive()
34983498
return ret
34993499

35003500
# This function was autogenerated by boilerplate.py. Do not edit as
35013501
# changes will be lost
35023502
@docstring.copy_dedent(Axes.tick_params)
3503-
def tick_params(axis='both', **kwargs):
3503+
def tick_params(axis=u'both', **kwargs):
35043504
ret = gca().tick_params(axis=axis, **kwargs)
35053505
draw_if_interactive()
35063506
return ret
@@ -3516,7 +3516,7 @@ def margins(*args, **kw):
35163516
# This function was autogenerated by boilerplate.py. Do not edit as
35173517
# changes will be lost
35183518
@docstring.copy_dedent(Axes.autoscale)
3519-
def autoscale(enable=True, axis='both', tight=None):
3519+
def autoscale(enable=True, axis=u'both', tight=None):
35203520
ret = gca().autoscale(enable=enable, axis=axis, tight=tight)
35213521
draw_if_interactive()
35223522
return ret

0 commit comments

Comments
 (0)