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
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