Skip to content

Commit

Permalink
Merge pull request #1726 from radarhere/redirect
Browse files Browse the repository at this point in the history
Updated redirected URLs
  • Loading branch information
hugovk committed Feb 11, 2016
2 parents 70f95d0 + a7c7aa1 commit 86c548a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------
Expand Down
2 changes: 1 addition & 1 deletion PIL/IcoImagePlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion libImaging/AlphaComposite.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
2 changes: 1 addition & 1 deletion libImaging/Resample.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 86c548a

Please sign in to comment.