Updated redirected URLs

This commit is contained in:
Andrew Murray 2016-02-10 19:37:16 +11:00
parent 70f95d0c80
commit a7c7aa171d
4 changed files with 4 additions and 4 deletions

View File

@ -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)
------------------

View File

@ -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

View File

@ -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.
*/

View File

@ -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;