[issue24436] _PyTraceback_Add has no const qualifier for its char * arguments

2015-06-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Michael. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker _

[issue24436] _PyTraceback_Add has no const qualifier for its char * arguments

2015-06-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6f659b9f7fbc by Serhiy Storchaka in branch '3.4': Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add. https://hg.python.org/cpython/rev/6f659b9f7fbc New changeset 9602b8313dd5 by Serhiy Storchaka in branch '3.5': Issue #244

[issue24436] _PyTraceback_Add has no const qualifier for its char * arguments

2015-06-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue24436] _PyTraceback_Add has no const qualifier for its char * arguments

2015-06-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24436] _PyTraceback_Add has no const qualifier for its char * arguments

2015-06-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- nosy: +Mark.Shannon, pitrou, serhiy.storchaka stage: -> commit review ___ Python tracker ___ ___

[issue24436] _PyTraceback_Add has no const qualifier for its char * arguments

2015-06-11 Thread Michael Ensslin
Changes by Michael Ensslin : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue24436] _PyTraceback_Add has no const qualifier for its char * arguments

2015-06-11 Thread Michael Ensslin
New submission from Michael Ensslin: The prototype for the public API function _PyTraceback_Add is declared _PyTraceback_Add(char *, char *, int); Internally, its char * arguments are passed verbatim to PyCode_NewEmpty, which takes const char * arguments. The missing 'const' qualifier for the