mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-03-23 19:44:13 +03:00
Changed URLs to HTTPS
This commit is contained in:
parent
be30792714
commit
622a1cd542
|
@ -339,7 +339,7 @@ Take your test image, and make a really simple harness.
|
||||||
(vpy38-dbg) ubuntu@primary:~/Home/tests$ gdb python
|
(vpy38-dbg) ubuntu@primary:~/Home/tests$ gdb python
|
||||||
GNU gdb (Ubuntu 9.2-0ubuntu1~20.04) 9.2
|
GNU gdb (Ubuntu 9.2-0ubuntu1~20.04) 9.2
|
||||||
Copyright (C) 2020 Free Software Foundation, Inc.
|
Copyright (C) 2020 Free Software Foundation, Inc.
|
||||||
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
|
||||||
This is free software: you are free to change and redistribute it.
|
This is free software: you are free to change and redistribute it.
|
||||||
There is NO WARRANTY, to the extent permitted by law.
|
There is NO WARRANTY, to the extent permitted by law.
|
||||||
Type "show copying" and "show warranty" for details.
|
Type "show copying" and "show warranty" for details.
|
||||||
|
@ -348,7 +348,7 @@ Take your test image, and make a really simple harness.
|
||||||
For bug reporting instructions, please see:
|
For bug reporting instructions, please see:
|
||||||
<http://www.gnu.org/software/gdb/bugs/>.
|
<http://www.gnu.org/software/gdb/bugs/>.
|
||||||
Find the GDB manual and other documentation resources online at:
|
Find the GDB manual and other documentation resources online at:
|
||||||
<http://www.gnu.org/software/gdb/documentation/>.
|
<https://www.gnu.org/software/gdb/documentation/>.
|
||||||
|
|
||||||
For help, type "help".
|
For help, type "help".
|
||||||
Type "apropos word" to search for commands related to "word"...
|
Type "apropos word" to search for commands related to "word"...
|
||||||
|
|
|
@ -787,7 +787,7 @@ def _get_global_header(im, info):
|
||||||
"""Return a list of strings representing a GIF header"""
|
"""Return a list of strings representing a GIF header"""
|
||||||
|
|
||||||
# Header Block
|
# Header Block
|
||||||
# http://www.matthewflickinger.com/lab/whatsinagif/bits_and_bytes.asp
|
# https://www.matthewflickinger.com/lab/whatsinagif/bits_and_bytes.asp
|
||||||
|
|
||||||
version = b"87a"
|
version = b"87a"
|
||||||
for extensionKey in ["transparency", "duration", "loop", "comment"]:
|
for extensionKey in ["transparency", "duration", "loop", "comment"]:
|
||||||
|
|
|
@ -37,7 +37,7 @@ pyCMS
|
||||||
http://www.cazabon.com
|
http://www.cazabon.com
|
||||||
|
|
||||||
pyCMS home page: http://www.cazabon.com/pyCMS
|
pyCMS home page: http://www.cazabon.com/pyCMS
|
||||||
littleCMS home page: http://www.littlecms.com
|
littleCMS home page: https://www.littlecms.com
|
||||||
(littleCMS is Copyright (C) 1998-2001 Marti Maria)
|
(littleCMS is Copyright (C) 1998-2001 Marti Maria)
|
||||||
|
|
||||||
Originally released under LGPL. Graciously donated to PIL in
|
Originally released under LGPL. Graciously donated to PIL in
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
# Figure 205. Windows Paint Version 1: "DanM" Format
|
# Figure 205. Windows Paint Version 1: "DanM" Format
|
||||||
# Figure 206. Windows Paint Version 2: "LinS" Format. Used in Windows V2.03
|
# Figure 206. Windows Paint Version 2: "LinS" Format. Used in Windows V2.03
|
||||||
#
|
#
|
||||||
# See also: http://www.fileformat.info/format/mspaint/egff.htm
|
# See also: https://www.fileformat.info/format/mspaint/egff.htm
|
||||||
|
|
||||||
import io
|
import io
|
||||||
import struct
|
import struct
|
||||||
|
@ -73,7 +73,7 @@ class MspImageFile(ImageFile.ImageFile):
|
||||||
|
|
||||||
class MspDecoder(ImageFile.PyDecoder):
|
class MspDecoder(ImageFile.PyDecoder):
|
||||||
# The algo for the MSP decoder is from
|
# The algo for the MSP decoder is from
|
||||||
# http://www.fileformat.info/format/mspaint/egff.htm
|
# https://www.fileformat.info/format/mspaint/egff.htm
|
||||||
# cc-by-attribution -- That page references is taken from the
|
# cc-by-attribution -- That page references is taken from the
|
||||||
# Encyclopedia of Graphics File Formats and is licensed by
|
# Encyclopedia of Graphics File Formats and is licensed by
|
||||||
# O'Reilly under the Creative Common/Attribution license
|
# O'Reilly under the Creative Common/Attribution license
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* Small excerpts from the Tcl / Tk 8.6 headers
|
/* Small excerpts from the Tcl / Tk 8.6 headers
|
||||||
*
|
*
|
||||||
* License terms copied from:
|
* License terms copied from:
|
||||||
* http://www.tcl.tk/software/tcltk/license.html
|
* https://www.tcl.tk/software/tcltk/license.html
|
||||||
* as of 20 May 2016.
|
* as of 20 May 2016.
|
||||||
*
|
*
|
||||||
* Copyright (c) 1987-1994 The Regents of the University of California.
|
* Copyright (c) 1987-1994 The Regents of the University of California.
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
/* This is to work around a bug in GCC prior 4.9 in 64 bit mode.
|
/* This is to work around a bug in GCC prior 4.9 in 64 bit mode.
|
||||||
GCC generates code with partial dependency which is 3 times slower.
|
GCC generates code with partial dependency which is 3 times slower.
|
||||||
See: http://stackoverflow.com/a/26588074/253146 */
|
See: https://stackoverflow.com/a/26588074/253146 */
|
||||||
#if defined(__x86_64__) && defined(__SSE__) && !defined(__NO_INLINE__) && \
|
#if defined(__x86_64__) && defined(__SSE__) && !defined(__NO_INLINE__) && \
|
||||||
!defined(__clang__) && defined(GCC_VERSION) && (GCC_VERSION < 40900)
|
!defined(__clang__) && defined(GCC_VERSION) && (GCC_VERSION < 40900)
|
||||||
static float __attribute__((always_inline)) inline _i2f(int v) {
|
static float __attribute__((always_inline)) inline _i2f(int v) {
|
||||||
|
|
2
src/thirdparty/raqm/raqm.c
vendored
2
src/thirdparty/raqm/raqm.c
vendored
|
@ -491,7 +491,7 @@ raqm_set_text_utf8 (raqm_t *rq,
|
||||||
*
|
*
|
||||||
* The default is #RAQM_DIRECTION_DEFAULT, which determines the paragraph
|
* The default is #RAQM_DIRECTION_DEFAULT, which determines the paragraph
|
||||||
* direction based on the first character with strong bidi type (see [rule
|
* direction based on the first character with strong bidi type (see [rule
|
||||||
* P2](http://unicode.org/reports/tr9/#P2) in Unicode Bidirectional Algorithm),
|
* P2](https://unicode.org/reports/tr9/#P2) in Unicode Bidirectional Algorithm),
|
||||||
* which can be good enough for many cases but has problems when a mainly
|
* which can be good enough for many cases but has problems when a mainly
|
||||||
* right-to-left paragraph starts with a left-to-right character and vice versa
|
* right-to-left paragraph starts with a left-to-right character and vice versa
|
||||||
* as the detected paragraph direction will be the wrong one, or when text does
|
* as the detected paragraph direction will be the wrong one, or when text does
|
||||||
|
|
Loading…
Reference in New Issue
Block a user