Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add manual test file as per review by @minrk.
  • Loading branch information
fperez committed Apr 17, 2012
1 parent 801b99c commit b23ab20
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/examples/tests/pylab_figshow.py
@@ -0,0 +1,23 @@
"""Manual test for figure.show() in the inline matplotlib backend.
This script should be loaded for interactive use (via %load) into a qtconsole
or notebook initialized with the pylab inline backend.
Expected behavior: only *one* copy of the figure is shown.
For further details:
https://github.com/ipython/ipython/issues/1612
https://github.com/matplotlib/matplotlib/issues/835
"""

import numpy as np
import matplotlib.pyplot as plt

plt.ioff()
x = np.random.uniform(-5, 5, size=(100))
y = np.random.uniform(-5, 5, size=(100))
f = plt.figure()
plt.scatter(x, y)
plt.plot(y)
f.show()

0 comments on commit b23ab20

Please sign in to comment.