Merge pull request #1312 from d-schmidt/patch-1

gif doc improved
This commit is contained in:
Alex Clark 2015-06-30 08:32:21 -04:00
commit 53d0e75d3f

View File

@ -77,8 +77,8 @@ Reading sequences
~~~~~~~~~~~~~~~~~
The GIF loader supports the :py:meth:`~file.seek` and :py:meth:`~file.tell`
methods. You can seek to the next frame (``im.seek(im.tell() + 1``), or rewind
the file by seeking to the first frame. Random access is not supported.
methods. You can seek to the next frame (``im.seek(im.tell() + 1)``), or rewind
the file by seeking to the first frame. Random access is not supported. ``im.seek()`` raises an ``EOFError`` if you try to seek after the last frame.
Reading local images
~~~~~~~~~~~~~~~~~~~~