Thomas A Caswell

Results 407 comments of Thomas A Caswell

ad0452a260e13e06945384d5ddbf1a6761e40810 Is the last 'good' commit in the current history.

Sorry, I confused my self, the issue was not a new version of git, it was me having ``` [transfer] fsckobjects = true [fetch] fsckobjects = true [receive] fsckObjects =...

The easiest way to support this is to take an optional `ax` kwarg to the plotting methods which determine which Axes to plot to. If `ax is None` fall back...

> `#matplotlib.use("Agg") # This does indeed fix the problem but it would be better to fix the problem properly` I would argue that this is the proper solution, if you...

> The source code I gave doesn't use the Windows GUI. It saves a file to disk! Yes it does, if your backend is `'QtAgg'` then when you do ```python...

Please ping me if you need any help with the event system.

I believe This can be fixed by re-cythonizing.

@ianhi Email me so we can coordinate on what secrets need to be where.

As @jklymak and @QuLogic pointed out in https://github.com/matplotlib/matplotlib/issues/21957 the issue is with the life cyle management of the implicit figures. In the case of nbagg we have logic that when...

completely off-topic: the explicit (aka Object Oriented) API is "new" as of ~15 years ago ;) ---- Try: ```python fig, ax = plt.subplots(num=1, clear=True) ax.plot([0, 1], [2, 3]) plt..show() ```...