minor bugfix

This commit is contained in:
David Schmidt 2013-01-11 12:47:32 +01:00
parent a635a1dcb1
commit 91503cafd3
2 changed files with 3 additions and 3 deletions

View File

@ -525,7 +525,7 @@ PyImaging_JpegEncoderNew(PyObject* self, PyObject* args)
char* rawExif = NULL; char* rawExif = NULL;
int rawExifLen = 0; int rawExifLen = 0;
if (!PyArg_ParseTuple(args, "ss|iiiiiiii"PY_ARG_BYTES_LENGTH, if (!PyArg_ParseTuple(args, "ss|iiiiiiii"PY_ARG_BYTES_LENGTH""PY_ARG_BYTES_LENGTH,
&mode, &rawmode, &quality, &mode, &rawmode, &quality,
&progressive, &smooth, &optimize, &streamtype, &progressive, &smooth, &optimize, &streamtype,
&xdpi, &ydpi, &subsampling, &extra, &extra_size, &xdpi, &ydpi, &subsampling, &extra, &extra_size,

4
py3.h
View File

@ -11,7 +11,7 @@
*/ */
#if PY_VERSION_HEX >= 0x03000000 #if PY_VERSION_HEX >= 0x03000000
#define PY_ARG_BYTES_LENGTH "y#y#" #define PY_ARG_BYTES_LENGTH "y#"
/* Map PyInt -> PyLong */ /* Map PyInt -> PyLong */
#define PyInt_AsLong PyLong_AsLong #define PyInt_AsLong PyLong_AsLong
@ -20,7 +20,7 @@
#define PyInt_AS_LONG PyLong_AS_LONG #define PyInt_AS_LONG PyLong_AS_LONG
#else /* PY_VERSION_HEX < 0x03000000 */ #else /* PY_VERSION_HEX < 0x03000000 */
#define PY_ARG_BYTES_LENGTH "s#s#" #define PY_ARG_BYTES_LENGTH "s#"
#if !defined(KEEP_PY_UNICODE) #if !defined(KEEP_PY_UNICODE)
/* Map PyUnicode -> PyString */ /* Map PyUnicode -> PyString */