Skip to content

Commit fda8600

Browse files
committedMar 30, 2023
Boilerplate.py review comments
Bump autoformatted pyplot line width to 88 chars
1 parent bd9d307 commit fda8600

File tree

2 files changed

+93
-30
lines changed

2 files changed

+93
-30
lines changed
 

‎lib/matplotlib/pyplot.py

+84-23
Original file line numberDiff line numberDiff line change
@@ -2393,7 +2393,9 @@ def figimage(X: ArrayLike, xo: int = 0, yo: int = 0, alpha: float | None = None,
23932393

23942394
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
23952395
@_copy_docstring_and_deprecators(Figure.text)
2396-
def figtext(x: float, y: float, s: str, fontdict: dict[str, Any] | None = None, **kwargs) -> Text:
2396+
def figtext(
2397+
x: float, y: float, s: str, fontdict: dict[str, Any] | None = None, **kwargs
2398+
) -> Text:
23972399
return gcf().text(x, y, s, fontdict=fontdict, **kwargs)
23982400

23992401

@@ -2422,8 +2424,8 @@ def ginput(n: int = 1, timeout: float = 30, show_clicks: bool = True, mouse_add:
24222424
@_copy_docstring_and_deprecators(Figure.subplots_adjust)
24232425
def subplots_adjust(left: str | None = None, bottom: str | None = None, right: str | None = None, top: str | None = None, wspace: str | None = None, hspace: str | None = None) -> None:
24242426
return gcf().subplots_adjust(
2425-
left=left, bottom=bottom, right=right, top=top, wspace=wspace,
2426-
hspace=hspace)
2427+
left=left, bottom=bottom, right=right, top=top, wspace=wspace, hspace=hspace
2428+
)
24272429

24282430

24292431
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2446,9 +2448,10 @@ def waitforbuttonpress(timeout: float = -1):
24462448

24472449
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
24482450
@_copy_docstring_and_deprecators(Axes.acorr)
2449-
def acorr(x: ArrayLike, *, data=None, **kwargs) -> tuple[np.ndarray, np.ndarray, LineCollection | Line2D, Line2D | None]:
2450-
return gca().acorr(
2451-
x, **({"data": data} if data is not None else {}), **kwargs)
2451+
def acorr(
2452+
x: ArrayLike, *, data=None, **kwargs
2453+
) -> tuple[np.ndarray, np.ndarray, LineCollection | Line2D, Line2D | None]:
2454+
return gca().acorr(x, **({"data": data} if data is not None else {}), **kwargs)
24522455

24532456

24542457
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2527,9 +2530,7 @@ def bar(x: float | ArrayLike, height: float | ArrayLike, width: float | ArrayLik
25272530
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
25282531
@_copy_docstring_and_deprecators(Axes.barbs)
25292532
def barbs(*args, data=None, **kwargs) -> Barbs:
2530-
return gca().barbs(
2531-
*args, **({"data": data} if data is not None else {}),
2532-
**kwargs)
2533+
return gca().barbs(*args, **({"data": data} if data is not None else {}), **kwargs)
25332534

25342535

25352536
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2569,8 +2570,8 @@ def boxplot(x: ArrayLike | Sequence[ArrayLike], notch: bool | None = None, sym:
25692570
@_copy_docstring_and_deprecators(Axes.broken_barh)
25702571
def broken_barh(xranges: Sequence[tuple[float, float]], yrange: tuple[float, float], *, data=None, **kwargs) -> BrokenBarHCollection:
25712572
return gca().broken_barh(
2572-
xranges, yrange,
2573-
**({"data": data} if data is not None else {}), **kwargs)
2573+
xranges, yrange, **({"data": data} if data is not None else {}), **kwargs
2574+
)
25742575

25752576

25762577
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2654,9 +2655,7 @@ def eventplot(positions: ArrayLike | Sequence[ArrayLike], orientation: Literal['
26542655
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
26552656
@_copy_docstring_and_deprecators(Axes.fill)
26562657
def fill(*args, data: Any | None = None, **kwargs) -> list[Polygon]:
2657-
return gca().fill(
2658-
*args, **({"data": data} if data is not None else {}),
2659-
**kwargs)
2658+
return gca().fill(*args, **({"data": data} if data is not None else {}), **kwargs)
26602659

26612660

26622661
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2717,7 +2716,19 @@ def stairs(values: ArrayLike, edges: ArrayLike | None = None, *, orientation: Li
27172716

27182717
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
27192718
@_copy_docstring_and_deprecators(Axes.hist2d)
2720-
def hist2d(x: ArrayLike, y: ArrayLike, bins: None | int | tuple[int, int] | ArrayLike | tuple[ArrayLike, ArrayLike] = 10, range: ArrayLike | None = None, density: bool = False, weights: ArrayLike | None = None, cmin: float | None = None, cmax: float | None = None, *, data=None, **kwargs) -> tuple[np.ndarray, np.ndarray, np.ndarray, QuadMesh]:
2719+
def hist2d(
2720+
x: ArrayLike,
2721+
y: ArrayLike,
2722+
bins: None | int | tuple[int, int] | ArrayLike | tuple[ArrayLike, ArrayLike] = 10,
2723+
range: ArrayLike | None = None,
2724+
density: bool = False,
2725+
weights: ArrayLike | None = None,
2726+
cmin: float | None = None,
2727+
cmax: float | None = None,
2728+
*,
2729+
data=None,
2730+
**kwargs,
2731+
) -> tuple[np.ndarray, np.ndarray, np.ndarray, QuadMesh]:
27212732
__ret = gca().hist2d(
27222733
x, y, bins=bins, range=range, density=density,
27232734
weights=weights, cmin=cmin, cmax=cmax,
@@ -2758,7 +2769,9 @@ def legend(*args, **kwargs) -> Legend:
27582769

27592770
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
27602771
@_copy_docstring_and_deprecators(Axes.locator_params)
2761-
def locator_params(axis: Literal['both', 'x', 'y'] = 'both', tight: bool | None = None, **kwargs) -> None:
2772+
def locator_params(
2773+
axis: Literal["both", "x", "y"] = "both", tight: bool | None = None, **kwargs
2774+
) -> None:
27622775
return gca().locator_params(axis=axis, tight=tight, **kwargs)
27632776

27642777

@@ -2916,7 +2929,24 @@ def quiverkey(Q: Quiver, X: float, Y: float, U: float, label: str, **kwargs) ->
29162929

29172930
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
29182931
@_copy_docstring_and_deprecators(Axes.scatter)
2919-
def scatter(x: float | ArrayLike, y: float | ArrayLike, s: float | ArrayLike | None = None, c: Sequence[Color] | Color | None = None, marker: MarkerType | None = None, cmap: str | Colormap | None = None, norm: str | Normalize | None = None, vmin: float | None = None, vmax: float | None = None, alpha: float | None = None, linewidths: float | Sequence[float] | None = None, *, edgecolors: Literal['face', 'none'] | Color | Sequence[Color] | None = None, plotnonfinite: bool = False, data=None, **kwargs) -> PathCollection:
2932+
def scatter(
2933+
x: float | ArrayLike,
2934+
y: float | ArrayLike,
2935+
s: float | ArrayLike | None = None,
2936+
c: Sequence[Color] | Color | None = None,
2937+
marker: MarkerType | None = None,
2938+
cmap: str | Colormap | None = None,
2939+
norm: str | Normalize | None = None,
2940+
vmin: float | None = None,
2941+
vmax: float | None = None,
2942+
alpha: float | None = None,
2943+
linewidths: float | Sequence[float] | None = None,
2944+
*,
2945+
edgecolors: Literal["face", "none"] | Color | Sequence[Color] | None = None,
2946+
plotnonfinite: bool = False,
2947+
data=None,
2948+
**kwargs,
2949+
) -> PathCollection:
29202950
__ret = gca().scatter(
29212951
x, y, s=s, c=c, marker=marker, cmap=cmap, norm=norm,
29222952
vmin=vmin, vmax=vmax, alpha=alpha, linewidths=linewidths,
@@ -2940,7 +2970,29 @@ def semilogy(*args, **kwargs) -> list[Line2D]:
29402970

29412971
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
29422972
@_copy_docstring_and_deprecators(Axes.specgram)
2943-
def specgram(x: ArrayLike, NFFT: int | None = None, Fs: float | None = None, Fc: int | None = None, detrend: Literal['none', 'mean', 'linear'] | Callable[[ArrayLike], ArrayLike] | None = None, window: Callable[[ArrayLike], ArrayLike] | ArrayLike | None = None, noverlap: int | None = None, cmap: str | Colormap | None = None, xextent: tuple[float, float] | None = None, pad_to: int | None = None, sides: Literal['default', 'onesided', 'twosided'] | None = None, scale_by_freq: bool | None = None, mode: Literal['default', 'psd', 'magnitude', 'angle', 'phase'] | None = None, scale: Literal['default', 'linear', 'dB'] | None = None, vmin: float | None = None, vmax: float | None = None, *, data=None, **kwargs) -> tuple[np.ndarray, np.ndarray, np.ndarray, AxesImage]:
2973+
def specgram(
2974+
x: ArrayLike,
2975+
NFFT: int | None = None,
2976+
Fs: float | None = None,
2977+
Fc: int | None = None,
2978+
detrend: Literal["none", "mean", "linear"]
2979+
| Callable[[ArrayLike], ArrayLike]
2980+
| None = None,
2981+
window: Callable[[ArrayLike], ArrayLike] | ArrayLike | None = None,
2982+
noverlap: int | None = None,
2983+
cmap: str | Colormap | None = None,
2984+
xextent: tuple[float, float] | None = None,
2985+
pad_to: int | None = None,
2986+
sides: Literal["default", "onesided", "twosided"] | None = None,
2987+
scale_by_freq: bool | None = None,
2988+
mode: Literal["default", "psd", "magnitude", "angle", "phase"] | None = None,
2989+
scale: Literal["default", "linear", "dB"] | None = None,
2990+
vmin: float | None = None,
2991+
vmax: float | None = None,
2992+
*,
2993+
data=None,
2994+
**kwargs,
2995+
) -> tuple[np.ndarray, np.ndarray, np.ndarray, AxesImage]:
29442996
__ret = gca().specgram(
29452997
x, NFFT=NFFT, Fs=Fs, Fc=Fc, detrend=detrend, window=window,
29462998
noverlap=noverlap, cmap=cmap, xextent=xextent, pad_to=pad_to,
@@ -2963,7 +3015,7 @@ def spy(Z: ArrayLike, precision: float | Literal['present'] = 0, marker: str | N
29633015

29643016
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
29653017
@_copy_docstring_and_deprecators(Axes.stackplot)
2966-
def stackplot(x, *args, labels=(), colors=None, baseline='zero', data=None, **kwargs):
3018+
def stackplot(x, *args, labels=(), colors=None, baseline="zero", data=None, **kwargs):
29673019
return gca().stackplot(
29683020
x, *args, labels=labels, colors=colors, baseline=baseline,
29693021
**({"data": data} if data is not None else {}), **kwargs)
@@ -3015,7 +3067,9 @@ def table(cellText=None, cellColours=None, cellLoc='right', colWidths=None, rowL
30153067

30163068
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
30173069
@_copy_docstring_and_deprecators(Axes.text)
3018-
def text(x: float, y: float, s: str, fontdict: dict[str, Any] | None = None, **kwargs) -> Text:
3070+
def text(
3071+
x: float, y: float, s: str, fontdict: dict[str, Any] | None = None, **kwargs
3072+
) -> Text:
30193073
return gca().text(x, y, s, fontdict=fontdict, **kwargs)
30203074

30213075

@@ -3103,9 +3157,16 @@ def sci(im: ScalarMappable) -> None:
31033157

31043158
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
31053159
@_copy_docstring_and_deprecators(Axes.set_title)
3106-
def title(label: str, fontdict: dict[str, Any] | None = None, loc: Literal['left', 'center', 'right'] | None = None, pad: float | None = None, *, y: float | None = None, **kwargs) -> Text:
3107-
return gca().set_title(
3108-
label, fontdict=fontdict, loc=loc, pad=pad, y=y, **kwargs)
3160+
def title(
3161+
label: str,
3162+
fontdict: dict[str, Any] | None = None,
3163+
loc: Literal["left", "center", "right"] | None = None,
3164+
pad: float | None = None,
3165+
*,
3166+
y: float | None = None,
3167+
**kwargs,
3168+
) -> Text:
3169+
return gca().set_title(label, fontdict=fontdict, loc=loc, pad=pad, y=y, **kwargs)
31093170

31103171

31113172
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

‎tools/boilerplate.py

+9-7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
import ast
1717
from enum import Enum
18+
import functools
1819
import inspect
1920
from inspect import Parameter
2021
from pathlib import Path
@@ -385,7 +386,7 @@ def build_pyplot(pyplot_path):
385386

386387
# Run black to autoformat pyplot
387388
subprocess.run(
388-
[sys.executable, "-m", "black", "--line-length=79", pyplot_path]
389+
[sys.executable, "-m", "black", "--line-length=88", pyplot_path]
389390
)
390391

391392

@@ -399,9 +400,10 @@ def get_ast_tree(cls):
399400
for item in tree.body:
400401
if isinstance(item, ast.ClassDef) and item.name == cls.__name__:
401402
return item
402-
raise ValueError("Cannot find {cls.__name__} in ast")
403+
raise ValueError(f"Cannot find {cls.__name__} in ast")
403404

404405

406+
@functools.lru_cache
405407
def get_ast_mro_trees(cls):
406408
return [get_ast_tree(c) for c in cls.__mro__ if c.__module__ != "builtins"]
407409

@@ -433,11 +435,11 @@ def update_sig_from_node(node, sig):
433435
params = dict(sig.parameters)
434436
args = node.args
435437
allargs = (
436-
args.posonlyargs
437-
+ args.args
438-
+ [args.vararg]
439-
+ args.kwonlyargs
440-
+ [args.kwarg]
438+
*args.posonlyargs,
439+
*args.args,
440+
args.vararg,
441+
*args.kwonlyargs,
442+
args.kwarg,
441443
)
442444
for param in allargs:
443445
if param is None:

0 commit comments

Comments
 (0)