From: Serhiy Storchaka Date: Sun, 3 Jul 2016 10:26:52 +0000 (+0300) Subject: Issue #26765: Fixed parsing Py_ssize_t arguments on 32-bit Windows. X-Git-Tag: v3.6.0a3~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab8bcb34dc0b66ce2bc905f78a664333ee8f65f9;p=thirdparty%2FPython%2Fcpython.git Issue #26765: Fixed parsing Py_ssize_t arguments on 32-bit Windows. --- diff --git a/Objects/bytes_methods.c b/Objects/bytes_methods.c index fe666c631c65..d0f784ecd464 100644 --- a/Objects/bytes_methods.c +++ b/Objects/bytes_methods.c @@ -1,3 +1,4 @@ +#define PY_SSIZE_T_CLEAN #include "Python.h" #include "bytes_methods.h"