From a7c7aa171d3172841fa60a93e470d588b2435a33 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 10 Feb 2016 19:37:16 +1100 Subject: [PATCH] Updated redirected URLs --- CHANGES.rst | 2 +- PIL/IcoImagePlugin.py | 2 +- libImaging/AlphaComposite.c | 2 +- libImaging/Resample.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 41e6f8ce0..f354d4709 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1247,7 +1247,7 @@ Changelog (Pillow) - Use PyCapsule for py3.1, fixes #237. -- Workaround for: http://bugs.python.org/16754 in 3.2.x < 3.2.4 and 3.3.0. +- Workaround for: http://bugs.python.org/issue16754 in 3.2.x < 3.2.4 and 3.3.0. 2.0.0 (2013-03-15) ------------------ diff --git a/PIL/IcoImagePlugin.py b/PIL/IcoImagePlugin.py index 4aa7687af..d9b554ab0 100644 --- a/PIL/IcoImagePlugin.py +++ b/PIL/IcoImagePlugin.py @@ -19,7 +19,7 @@ # # Icon format references: # * https://en.wikipedia.org/wiki/ICO_(file_format) -# * http://msdn.microsoft.com/en-us/library/ms997538.aspx +# * https://msdn.microsoft.com/en-us/library/ms997538.aspx import struct diff --git a/libImaging/AlphaComposite.c b/libImaging/AlphaComposite.c index 9433fae53..538fd88e3 100644 --- a/libImaging/AlphaComposite.c +++ b/libImaging/AlphaComposite.c @@ -3,7 +3,7 @@ * $Id$ * * Alpha composite imSrc over imDst. - * http://en.wikipedia.org/wiki/Alpha_compositing + * https://en.wikipedia.org/wiki/Alpha_compositing * * See the README file for details on usage and redistribution. */ diff --git a/libImaging/Resample.c b/libImaging/Resample.c index 0d401c1df..64e90eed0 100644 --- a/libImaging/Resample.c +++ b/libImaging/Resample.c @@ -53,7 +53,7 @@ static struct filter BILINEAR = { bilinear_filter, 1.0 }; static inline float bicubic_filter(float x) { - /* http://en.wikipedia.org/wiki/Bicubic_interpolation#Bicubic_convolution_algorithm */ + /* https://en.wikipedia.org/wiki/Bicubic_interpolation#Bicubic_convolution_algorithm */ #define a -0.5 if (x < 0.0) x = -x;