Commit f61db65d authored by Andrew Svetlov's avatar Andrew Svetlov

#15094: fix incorrectly placed #endif in _tkinter.c.

Patch by Serhiy Storchaka.
parent 2a714a88
......@@ -52,6 +52,9 @@ Core and Builtins
Library
-------
- Issue #15094: Incorrectly placed #endif in _tkinter.c.
Patch by Serhiy Storchaka.
- Issue #13922: argparse no longer incorrectly strips '--'s that appear
after the first one.
......
......@@ -996,8 +996,8 @@ AsObj(PyObject *value)
ch);
ckfree(FREECAST outbuf);
return NULL;
#endif
}
#endif
outbuf[i] = ch;
}
result = Tcl_NewUnicodeObj(outbuf, size);
......
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