DOC: Fix read_multipage docstring

This commit is contained in:
Zach Pincus
2012-02-01 22:57:44 -05:00
parent b5dce45446
commit a4c986b02f
+1 -1
View File
@@ -391,7 +391,7 @@ def _process_multipage(filename, flags, process_func):
def read_multipage(filename, flags=0):
"""Read a multipage image to a list of numpy arrays, where each
array is of shape (width, height) for greyscale images, or shape
(nchannels, width, height) for RGB or RGBA images.
(width, height, nchannels) for RGB or RGBA images.
"""
return _process_multipage(filename, flags, _array_from_bitmap)