Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: link exceptions to Python docs #105

Merged
merged 1 commit into from
Nov 5, 2023
Merged
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
7 changes: 4 additions & 3 deletions docs/releasenotes/8.3.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ Catch OSError when checking if destination is sys.stdout
========================================================

In 8.3.0, a check to see if the destination was ``sys.stdout`` when saving an image was
updated. This lead to an OSError being raised if the environment restricted access.
updated. This lead to an :py:exc:`OSError` being raised if the environment restricted
access.

The OSError is now silently caught.
The :py:exc:`OSError` is now silently caught.

Fixed removing orientation in ImageOps.exif_transpose
=====================================================
Expand All @@ -34,7 +35,7 @@ original image EXIF data was not modified, and the orientation was only removed
the modified copy.

However, for certain images the orientation was already missing from the modified
image, leading to a KeyError.
image, leading to a :py:exc:`KeyError`.

This error has been resolved, and the copying of metadata to the modified image
improved.