[issue28233] PyUnicode_FromFormatV can leak PyUnicodeWriter

2016-09-21 Thread STINNER Victor
STINNER Victor added the comment: Thanks for the report, it should be fixed now. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue28233] PyUnicode_FromFormatV can leak PyUnicodeWriter

2016-09-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 00f090563f1b by Victor Stinner in branch '3.5': Fix PyUnicode_FromFormatV() error handling https://hg.python.org/cpython/rev/00f090563f1b -- nosy: +python-dev ___ Python tracker

[issue28233] PyUnicode_FromFormatV can leak PyUnicodeWriter

2016-09-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +haypo, serhiy.storchaka ___ Python tracker ___

[issue28233] PyUnicode_FromFormatV can leak PyUnicodeWriter

2016-09-21 Thread Christian Heimes
New submission from Christian Heimes: PyUnicode_FromFormatV() does not call _PyUnicodeWriter_Finish() in p > 127 case and therefore leaks a PyUnicodeWriter instance. -- components: Interpreter Core messages: 277118 nosy: christian.heimes priority: normal severity: normal status: open