Antony Lee
Antony Lee
FontProperties (henceforth "FP") is used by Matplotlib for font selection. Instances can be passed e.g. to `text()` (as the `fontproperties` kwarg) or `legend()` (as the `prop` kwarg); they behave essentially...
### Bug summary Passing interpolation_stage="rgba" to imshow() results in array-valued alphas being ignored. ### Code for reproduction ```Python from pylab import * im = arange(9).reshape(3, 3) alpha = linspace(0, 1,...
Locally changing the assigned axis seems to be the most practical solution, if not the most elegant. See #13438 and related discussions. This PR mostly addresses that issue, although ultimately...
### Bug report **Bug summary** The baseline images for the test_clipping test (clip_path_clipping.{png,pdf,svg}) clearly show differences in rendering between agg, pdf and svg:  top left is the svg baseline...
### Bug report **Bug summary** **Code for reproduction** ```python from matplotlib import pyplot as plt fig, axs = plt.subplots(2) axs[0].bar("thing", 1, data={"thing": 1}) axs[1].bar("other", 1, data={"thing": 1}) plt.show() ``` **Actual...
Noticed this a while ago (while implementing mplcairo) but prompted to report due to #9829: ``` from matplotlib import pyplot as plt, ticker fig, axs = plt.subplots(4, 4) for i,...
### Bug summary The "standard" matplotlib color semantics is that the strings `"none"` and `"None"` both mean fully transparent (as can be checked by mpl.colors.to_rgba); the object `None` can sometimes...
Instead of having both _add_tool_cbk (the main callback that handles addition of new tools) and _add_tool (which does the same but for pre-existing tools), we can just always use _add_tool_cbk,...
Consider ``` import numpy as np from xray import * ds = Dataset({"a": DataArray(np.zeros((3, 4)))}) ds["b"] = b = DataArray(np.zeros((3, 4))) b[0, 0] = 1 print(ds["b"][0, 0]) # ==> prints...
Currently, sdists do not automatically include headers for extension modules. However, the information of headers is in fact already present and could easily be added: it is (or rather, should...