On 14 July 2014 00:10, Damon McDougall wrote:
> On Sun, Jul 13, 2014 at 12:27 AM, Eric Firing wrote:
> > On 2014/07/12, 7:20 PM, Thomas Caswell wrote:
> >> Hey all,
> >>
> >> After a very productive sprint at scipy (according to pluse, we merged
> >> 35 PRs in the last 3 days), I have created th
Hi,
I am happily using `plot_directive`, but I've run into an
inconvenience when using the 'context' option. Consider this rst
file:
```
###
A title
###
.. plot::
:context:
import matplotlib.pyplot as plt
plt.plot(range(10))
Then some text.
.. plot::
:context:
pl
Wouldn't a better default be to just close all figures when they're
displayed? It can't be common that someone wants to show the same plot
repeatedly (and if they do that could have an option)...?
-n
On 14 Jul 2014 22:16, "Matthew Brett" wrote:
> Hi,
>
> I am happily using `plot_directive`, but