10000 Backport PR #9857 on branch v2.1.0-doc by lumberbot-app[bot] · Pull Request #9858 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Backport PR #9857 on branch v2.1.0-doc #9858

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

Merged
merged 1 commit into from
Nov 26, 2017
Merged
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
Backport PR #9857: documentation: fix url for pillow
  • Loading branch information
anntzer authored and MeeseeksDev[bot] committed Nov 26, 2017
commit 73b5d14309d071cd3f3062dde81f837833848a2c
2 changes: 1 addition & 1 deletion doc/faq/howto_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ or by saving to a file handle::
import sys
fig.savefig(sys.stdout)

Here is an example using `Pillow <http://python-imaging.github.io/>`_.
Here is an example using `Pillow <https://python-pillow.org/>`_.
First, the figure is saved to a BytesIO object which is then fed to
Pillow for further processing::

Expand Down
2 changes: 1 addition & 1 deletion tutorials/introductory/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# ===============================================
#
# Loading image data is supported by the `Pillow
# <http://python-imaging.github.io/>`_ library. Natively, matplotlib only
# <https://python-pillow.org/>`_ library. Natively, matplotlib only
# supports PNG images. The commands shown below fall back on Pillow if the
# native read fails.
#
Expand Down
0