mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-10 00:20:57 +03:00
Merge pull request #4515 from hugovk/png-regression-docs
Release notes for 7.1.1
This commit is contained in:
commit
5e5b2899d6
|
@ -2,6 +2,12 @@
|
||||||
Changelog (Pillow)
|
Changelog (Pillow)
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
7.1.1 (2020-04-02)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- Fix regression seeking and telling PNGs #4512 #4514
|
||||||
|
[hugovk, radarhere]
|
||||||
|
|
||||||
7.1.0 (2020-04-01)
|
7.1.0 (2020-04-01)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
25
docs/releasenotes/7.1.1.rst
Normal file
25
docs/releasenotes/7.1.1.rst
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
7.1.1
|
||||||
|
-----
|
||||||
|
|
||||||
|
Fix regression seeking PNG files
|
||||||
|
================================
|
||||||
|
|
||||||
|
This fixes a regression introduced in 7.1.0 when adding support for APNG files when calling
|
||||||
|
``seek`` and ``tell``:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
>>> from PIL import Image
|
||||||
|
>>> with Image.open("Tests/images/hopper.png") as im:
|
||||||
|
... im.seek(0)
|
||||||
|
...
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "<stdin>", line 2, in <module>
|
||||||
|
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/PIL/PngImagePlugin.py", line 739, in seek
|
||||||
|
if not self._seek_check(frame):
|
||||||
|
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/PIL/ImageFile.py", line 306, in _seek_check
|
||||||
|
return self.tell() != frame
|
||||||
|
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/PIL/PngImagePlugin.py", line 827, in tell
|
||||||
|
return self.__frame
|
||||||
|
AttributeError: 'PngImageFile' object has no attribute '_PngImageFile__frame'
|
||||||
|
>>>
|
Loading…
Reference in New Issue
Block a user