diff options
Diffstat (limited to 'dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch')
-rw-r--r-- | dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch b/dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch deleted file mode 100644 index 9e709d01d412..000000000000 --- a/dev-python/matplotlib/files/matplotlib-0.98.5.2-no-xv.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- doc/mpl_examples/pylab_examples/to_numeric.py.orig 2009-02-27 17:10:43.000000000 +0000 -+++ doc/mpl_examples/pylab_examples/to_numeric.py 2009-02-27 17:06:20.000000000 +0000 -@@ -28,6 +28,6 @@ - X = fromstring(s, uint8) - X.shape = h, w, 3 - --im = Image.fromstring( "RGB", (w,h), s) --im.show() -+im = imshow(Image.fromstring( "RGB", (w,h), s),origin='lower') -+show() - |