Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/deprecations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,8 @@ Deprecated features
Below are features which are considered deprecated. Where appropriate,
a :py:exc:`DeprecationWarning` is issued.

ExifTags.IFD.Makernote
^^^^^^^^^^^^^^^^^^^^^^

.. deprecated:: 11.1.0

``ExifTags.IFD.Makernote`` has been deprecated. Instead, use
``ExifTags.IFD.MakerNote``.

Image getdata()
~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^

.. deprecated:: 12.1.0

Expand Down Expand Up @@ -94,6 +86,14 @@ Image.Image.get_child_images()
and so child images could only be retrieved from an :py:class:`PIL.ImageFile.ImageFile`
instance.

ExifTags.IFD.Makernote
^^^^^^^^^^^^^^^^^^^^^^

.. deprecated:: 11.1.0
.. versionremoved:: 13.0.0

``ExifTags.IFD.Makernote`` has been removed. Instead, use ``ExifTags.IFD.MakerNote``.

ImageFile.raise_oserror
^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
5 changes: 5 additions & 0 deletions docs/releasenotes/13.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ ImageCms.ImageCmsProfile.product_name and .product_info
``.product_info`` attributes have been removed. They were set to ``None`` since Pillow
2.3.0.

ExifTags.IFD.Makernote
^^^^^^^^^^^^^^^^^^^^^^

``ExifTags.IFD.Makernote`` has been removed. Instead, use ``ExifTags.IFD.MakerNote``.

Deprecations
============

Expand Down
1 change: 0 additions & 1 deletion src/PIL/ExifTags.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ class IFD(IntEnum):
Exif = 0x8769
GPSInfo = 0x8825
MakerNote = 0x927C
Makernote = 0x927C # Deprecated
Interop = 0xA005
IFD1 = -1

Expand Down