Skip to content

Re-run boilerplate.py. #11251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 2 additions & 23 deletions lib/matplotlib/pyplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2668,10 +2668,8 @@ def stem(

# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@docstring.copy_dedent(Axes.step)
def step(x, y, *args, where='pre', linestyle='', data=None, **kwargs):
return gca().step(
x=x, y=y, *args, where=where, linestyle=linestyle, data=data,
**kwargs)
def step(x, y, *args, where='pre', data=None, **kwargs):
return gca().step(x=x, y=y, *args, where=where, data=data, **kwargs)

# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@_autogen_docstring(Axes.streamplot)
Expand Down Expand Up @@ -2815,7 +2813,6 @@ def autumn():
"""
set_cmap("autumn")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def bone():
"""
Expand All @@ -2826,7 +2823,6 @@ def bone():
"""
set_cmap("bone")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def cool():
"""
Expand All @@ -2837,7 +2833,6 @@ def cool():
"""
set_cmap("cool")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def copper():
"""
Expand All @@ -2848,7 +2843,6 @@ def copper():
"""
set_cmap("copper")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def flag():
"""
Expand All @@ -2859,7 +2853,6 @@ def flag():
"""
set_cmap("flag")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def gray():
"""
Expand All @@ -2870,7 +2863,6 @@ def gray():
"""
set_cmap("gray")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def hot():
"""
Expand All @@ -2881,7 +2873,6 @@ def hot():
"""
set_cmap("hot")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def hsv():
"""
Expand All @@ -2892,7 +2883,6 @@ def hsv():
"""
set_cmap("hsv")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def jet():
"""
Expand All @@ -2903,7 +2893,6 @@ def jet():
"""
set_cmap("jet")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def pink():
"""
Expand All @@ -2914,7 +2903,6 @@ def pink():
"""
set_cmap("pink")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def prism():
"""
Expand All @@ -2925,7 +2913,6 @@ def prism():
"""
set_cmap("prism")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def spring():
"""
Expand All @@ -2936,7 +2923,6 @@ def spring():
"""
set_cmap("spring")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def summer():
"""
Expand All @@ -2947,7 +2933,6 @@ def summer():
"""
set_cmap("summer")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def winter():
"""
Expand All @@ -2958,7 +2943,6 @@ def winter():
"""
set_cmap("winter")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def magma():
"""
Expand All @@ -2969,7 +2953,6 @@ def magma():
"""
set_cmap("magma")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def inferno():
"""
Expand All @@ -2980,7 +2963,6 @@ def inferno():
"""
set_cmap("inferno")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def plasma():
"""
Expand All @@ -2991,7 +2973,6 @@ def plasma():
"""
set_cmap("plasma")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def viridis():
"""
Expand All @@ -3002,7 +2983,6 @@ def viridis():
"""
set_cmap("viridis")


# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
def nipy_spectral():
"""
Expand All @@ -3012,5 +2992,4 @@ def nipy_spectral():
image if there is one. See ``help(colormaps)`` for more information.
"""
set_cmap("nipy_spectral")

_setup_pyplot_info_docstrings()
1 change: 0 additions & 1 deletion tools/boilerplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def {name}():
image if there is one. See ``help(colormaps)`` for more information.
"""
set_cmap("{name}")

'''


Expand Down