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

Patch by Serhiy Storchaka.
This commit is contained in:
Andrew Svetlov 2012-07-22 13:56:54 +03:00
parent c7a5a76b1e
commit 80823d7ed7
2 changed files with 4 additions and 1 deletions

View File

@ -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.

View File

@ -996,8 +996,8 @@ AsObj(PyObject *value)
ch);
ckfree(FREECAST outbuf);
return NULL;
#endif
}
#endif
outbuf[i] = ch;
}
result = Tcl_NewUnicodeObj(outbuf, size);