Commit 99d27305 authored by Robert Bradshaw's avatar Robert Bradshaw Committed by GitHub

Merge pull request #2801 from true-pasky/patch-1

Fix incompatibility with C89
parents 5ecb4ba9 79594a75
...@@ -915,8 +915,8 @@ static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars, ...@@ -915,8 +915,8 @@ static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, char* chars,
#else #else
// non-CPython // non-CPython
{ {
uval = NULL;
PyObject *sign = NULL, *padding = NULL; PyObject *sign = NULL, *padding = NULL;
uval = NULL;
if (uoffset > 0) { if (uoffset > 0) {
prepend_sign = !!prepend_sign; prepend_sign = !!prepend_sign;
if (uoffset > prepend_sign) { if (uoffset > prepend_sign) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment