Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a5a76 commit 80823d7Copy full SHA for 80823d7
2 files changed
Misc/NEWS
@@ -52,6 +52,9 @@ Core and Builtins
52
Library
53
-------
54
55
+- Issue #15094: Incorrectly placed #endif in _tkinter.c.
56
+ Patch by Serhiy Storchaka.
57
+
58
- Issue #13922: argparse no longer incorrectly strips '--'s that appear
59
after the first one.
60
Modules/_tkinter.c
@@ -996,8 +996,8 @@ AsObj(PyObject *value)
996
ch);
997
ckfree(FREECAST outbuf);
998
return NULL;
999
-#endif
1000
}
+#endif
1001
outbuf[i] = ch;
1002
1003
result = Tcl_NewUnicodeObj(outbuf, size);
0 commit comments