Kaydet (Commit) 80823d7e authored tarafından Andrew Svetlov's avatar Andrew Svetlov

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

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