[issue28923] Nonexisting encoding specified in Tix.py

2016-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb8667196f93 by Terry Jan Reedy in branch '3.5': Issue 28923: Remove editor artifacts from Tix.py. https://hg.python.org/cpython/rev/eb8667196f93 New changeset 4a82412a3c51 by Terry Jan Reedy in branch '3.6': Issue 28923: Remove editor artifacts fro

[issue28923] Nonexisting encoding specified in Tix.py

2016-12-21 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue29044] Use after free in string '%c' formater

2016-12-21 Thread Xiang Zhang
New submission from Xiang Zhang: In string %c formater(formatchar), when receiving an integer-like objects, the return value is decrefed immediately before use. -- components: Interpreter Core files: use-after-free.patch keywords: patch messages: 283811 nosy: haypo, xiang.zhang priority

[issue29044] Use after free in string '%c' formater

2016-12-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> xiang.zhang nosy: +serhiy.storchaka stage: patch review -> commit review ___ Python tracker ___ ___

[issue29045] Outdated C api doc about Windows error

2016-12-21 Thread Xiang Zhang
New submission from Xiang Zhang: https://docs.python.org/3.7/c-api/exceptions.html#c.PyErr_SetFromWindowsErrWithFilename it stills refers to PyErr_SetFromWindowsErrWithFilenameObject but this function doesn't exist since Py3.4. I didn't find when and why it's deleted. And https://docs.python.o

[issue29040] building Android with android-ndk-r14

2016-12-21 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Thanks for compiling up necessary changes for NDK r14! Seems that indicates future Python versions will require at least NDK r14 to build? Another headache from unified headers is that it requires different --sysroot in compilation and linking. Currently setup.

[issue29045] Outdated C api doc about Windows error

2016-12-21 Thread Eryk Sun
Eryk Sun added the comment: PyErr_SetFromWindowsErrWithFilenameObject was never implemented. See issue 11210. Since 3.3 WindowsError is simply an alias for OSError. See PEP 3151. -- nosy: +eryksun ___ Python tracker

[issue29044] Use after free in string '%c' formater

2016-12-21 Thread STINNER Victor
STINNER Victor added the comment: I reviewed the change and added minor comments. The change LGTM. -- ___ Python tracker ___ ___ Pytho

[issue29045] Outdated C api doc about Windows error

2016-12-21 Thread Xiang Zhang
Xiang Zhang added the comment: > PyErr_SetFromWindowsErrWithFilenameObject was never implemented. See issue > 11210. > Since 3.3 WindowsError is simply an alias for OSError. See PEP 3151. Ohh, thanks for the info. I don't find the implementation in 2.7 either. -- versions: +Python 2.7

[issue29044] Use after free in string '%c' formater

2016-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset e572c323fe53 by Xiang Zhang in branch '3.5': Issue #29044: Fix a use-after-free in string '%c' formatter. https://hg.python.org/cpython/rev/e572c323fe53 New changeset cc61d1d45291 by Xiang Zhang in branch '3.6': Issue #29044: Merge 3.5. https://hg.p

[issue29044] Use after free in string '%c' formater

2016-12-21 Thread Xiang Zhang
Xiang Zhang added the comment: Thanks Serhiy and Victor. The final commits applies the comments. :-) -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker _

<    1   2