[issue18672] Fix format specifiers for debug output in _sre.c

2013-09-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue18672] Fix format specifiers for debug output in _sre.c

2013-09-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 99310e5e1b1c by Serhiy Storchaka in branch '3.3': Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in http://hg.python.org/cpython/rev/99310e5e1b1c New changeset c41c68a18bb6 by Serhiy Storchaka in branch 'default': Issue #18

[issue18672] Fix format specifiers for debug output in _sre.c

2013-08-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18672] Fix format specifiers for debug output in _sre.c

2013-08-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +needs review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue18672] Fix format specifiers for debug output in _sre.c

2013-08-19 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue18672] Fix format specifiers for debug output in _sre.c

2013-08-06 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: When the VERBOSE macro name is defined in _sre.c the TRACE macro prints regex processing trace. It use the %d format specifier for Py_ssize_t values. This can crash on 64-bit. Proposed patch fixes format strings. -- components: Regular Expressions