mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#15094: fix incorrectly placed #endif in _tkinter.c.
Patch by Serhiy Storchaka.
This commit is contained in:
parent
c7a5a76b1e
commit
80823d7ed7
2 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||||
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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue