ENH: Add show() to PIL plugin to support more consistent code over different plugins.

This commit is contained in:
Stefan van der Walt
2012-02-10 14:11:51 -08:00
parent 58fb3827d3
commit a2746c2872
2 changed files with 4 additions and 2 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
[pil]
description = Image reading via the Python Imaging Library
provides = imread, imsave, imshow
provides = imread, imsave, imshow, _app_show
+3
View File
@@ -111,3 +111,6 @@ def imshow(arr):
"""
Image.fromarray(img_as_ubyte(arr)).show()
def _app_show():
pass