Results 213 issues of Antony Lee

`print("Today is {:%A %B %d}".format(datetime.date.today()))` is highlighted incorrectly. mrrech/python-syntax@8b431340bad5354457e265db7be25edd73f4b281 provides a "partial" fix but it's not really enough.

It does not keep the annotation within the figure (tested on 1.5.1 and 2.0b1). On a related note, I noticed that deletion click events on annotations that are outside of...

``` import numpy as np import powerlaw data = np.array([1.7, 3.2, 5.4, 7.9, 10., 12.]) results = powerlaw.Fit(data) print(results.power_law.alpha) print(results.power_law.xmin) print(results.power_law.cdf(np.arange(10))) print(results.power_law.cdf(np.arange(3, 10))) ``` `xmin` is ~2.28, and the last...

... such as copyright notices. I'd suggest that a fully blank line breaks a block, or perhaps that can be configurable.

enhancement

Initially reported at https://bugzilla.redhat.com/show_bug.cgi?id=1255860 for Fedora, but also observed on Arch Linux by myself. Apparently only occurs in a KDE environment. ``` wget https://patch-diff.githubusercontent.com/raw/boostorg/preprocessor/pull/6.patch # or https://raw.githubusercontent.com/cplusplus/draft/master/source/containers.tex gvim -u NONE...

platform-linux

### Problem It would be useful to be able to share a single cycler instance across multiple axes, so that plotting on one axes advances the same instance on all...

New feature

### Bug report **Bug summary** Per the title. **Code for reproduction** ```python from pylab import * t = np.random.random((10, 10, 4)) ax = plt.figure().add_subplot() ax.imshow(t, extent=(0, 2, 0, 2)) ax.imshow(t,...

topic: images

Currently, there is no "official" way of knowing whether a Figure hosts an Animation. Yet, this information can be of interest e.g. for third-party backends. For example, a variant of...

topic: animation