mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 10:46:16 +03:00
Removed trailing whitespace
This commit is contained in:
parent
72d5218080
commit
00cb14afd7
|
@ -364,17 +364,17 @@ getbands(const char* mode)
|
||||||
static void*
|
static void*
|
||||||
getlist(PyObject* arg, Py_ssize_t* length, const char* wrong_length, int type)
|
getlist(PyObject* arg, Py_ssize_t* length, const char* wrong_length, int type)
|
||||||
{
|
{
|
||||||
/* - allocates and returns a c array of the items in the
|
/* - allocates and returns a c array of the items in the
|
||||||
python sequence arg.
|
python sequence arg.
|
||||||
- the size of the returned array is in length
|
- the size of the returned array is in length
|
||||||
- all of the arg items must be numeric items of the type
|
- all of the arg items must be numeric items of the type
|
||||||
specified in type
|
specified in type
|
||||||
- sequence length is checked against the length parameter IF
|
- sequence length is checked against the length parameter IF
|
||||||
an error parameter is passed in wrong_length
|
an error parameter is passed in wrong_length
|
||||||
- caller is responsible for freeing the memory
|
- caller is responsible for freeing the memory
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Py_ssize_t i, n;
|
Py_ssize_t i, n;
|
||||||
int itemp;
|
int itemp;
|
||||||
double dtemp;
|
double dtemp;
|
||||||
void* list;
|
void* list;
|
||||||
|
|
|
@ -16,7 +16,7 @@ explicitly.
|
||||||
Fully supported formats
|
Fully supported formats
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
.. contents::
|
.. contents::
|
||||||
|
|
||||||
BMP
|
BMP
|
||||||
^^^
|
^^^
|
||||||
|
|
|
@ -282,7 +282,7 @@ Building on Linux
|
||||||
^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
If you didn't build Python from source, make sure you have Python's
|
If you didn't build Python from source, make sure you have Python's
|
||||||
development libraries installed.
|
development libraries installed.
|
||||||
|
|
||||||
In Debian or Ubuntu::
|
In Debian or Ubuntu::
|
||||||
|
|
||||||
|
@ -298,7 +298,7 @@ In Fedora, the command is::
|
||||||
|
|
||||||
Or for Python 3::
|
Or for Python 3::
|
||||||
|
|
||||||
$ sudo dnf install python3-devel redhat-rpm-config
|
$ sudo dnf install python3-devel redhat-rpm-config
|
||||||
|
|
||||||
.. Note:: ``redhat-rpm-config`` is required on Fedora 23, but not earlier versions.
|
.. Note:: ``redhat-rpm-config`` is required on Fedora 23, but not earlier versions.
|
||||||
|
|
||||||
|
|
|
@ -780,7 +780,7 @@ affine_fixed(Imaging imOut, Imaging imIn,
|
||||||
/* use 16.16 fixed point arithmetics */
|
/* use 16.16 fixed point arithmetics */
|
||||||
#define FIX(v) FLOOR((v)*65536.0 + 0.5)
|
#define FIX(v) FLOOR((v)*65536.0 + 0.5)
|
||||||
|
|
||||||
a0 = FIX(a[0]); a1 = FIX(a[1]);
|
a0 = FIX(a[0]); a1 = FIX(a[1]);
|
||||||
a3 = FIX(a[3]); a4 = FIX(a[4]);
|
a3 = FIX(a[3]); a4 = FIX(a[4]);
|
||||||
a2 = FIX(a[2] + a[0] * 0.5 + a[1] * 0.5);
|
a2 = FIX(a[2] + a[0] * 0.5 + a[1] * 0.5);
|
||||||
a5 = FIX(a[5] + a[3] * 0.5 + a[4] * 0.5);
|
a5 = FIX(a[5] + a[3] * 0.5 + a[4] * 0.5);
|
||||||
|
|
|
@ -81,13 +81,13 @@ static struct filter LANCZOS = { lanczos_filter, 3.0 };
|
||||||
|
|
||||||
|
|
||||||
UINT8 _lookups[512] = {
|
UINT8 _lookups[512] = {
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
||||||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
||||||
|
@ -105,13 +105,13 @@ UINT8 _lookups[512] = {
|
||||||
208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
|
||||||
224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
|
224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
|
||||||
240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
|
240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
||||||
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -249,7 +249,7 @@ ImagingResampleHorizontal_8bpc(Imaging imIn, int xsize, struct filter *filterp)
|
||||||
}
|
}
|
||||||
|
|
||||||
kmax = normalize_coeffs_8bpc(xsize, kmax, prekk, &kk);
|
kmax = normalize_coeffs_8bpc(xsize, kmax, prekk, &kk);
|
||||||
free(prekk);
|
free(prekk);
|
||||||
if ( ! kmax) {
|
if ( ! kmax) {
|
||||||
free(xbounds);
|
free(xbounds);
|
||||||
return (Imaging) ImagingError_MemoryError();
|
return (Imaging) ImagingError_MemoryError();
|
||||||
|
@ -354,7 +354,7 @@ ImagingResampleVertical_8bpc(Imaging imIn, int ysize, struct filter *filterp)
|
||||||
}
|
}
|
||||||
|
|
||||||
kmax = normalize_coeffs_8bpc(ysize, kmax, prekk, &kk);
|
kmax = normalize_coeffs_8bpc(ysize, kmax, prekk, &kk);
|
||||||
free(prekk);
|
free(prekk);
|
||||||
if ( ! kmax) {
|
if ( ! kmax) {
|
||||||
free(xbounds);
|
free(xbounds);
|
||||||
return (Imaging) ImagingError_MemoryError();
|
return (Imaging) ImagingError_MemoryError();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user