[issue36251] Invalid format specifiers in MatchObject and StdPrinter repr

2019-03-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Stephan! Versions older than 3.6 take only security fixes. See also issue36254. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior versions: -Python 3.4, Python 3.5, P

[issue36251] Invalid format specifiers in MatchObject and StdPrinter repr

2019-03-10 Thread miss-islington
miss-islington added the comment: New changeset e4be2057d4bd06eb56fbfef4e4ed88fff7fb47cd by Miss Islington (bot) in branch '3.7': bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH-12252) https://github.com/python/cpython/commit/e4be2057d4bd06eb56fbfef4e4ed88fff7fb

[issue36251] Invalid format specifiers in MatchObject and StdPrinter repr

2019-03-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 8b91edadc06dcb0d391a65d1ecdf07dcb429df1b by Serhiy Storchaka (sth) in branch 'master': bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH-12252) https://github.com/python/cpython/commit/8b91edadc06dcb0d391a65d1ecdf0

[issue36251] Invalid format specifiers in MatchObject and StdPrinter repr

2019-03-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +12248 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36251] Invalid format specifiers in MatchObject and StdPrinter repr

2019-03-09 Thread Stephan Hohe
Change by Stephan Hohe : -- keywords: +patch pull_requests: +12240 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue36251] Invalid format specifiers in MatchObject and StdPrinter repr

2019-03-09 Thread Stephan Hohe
New submission from Stephan Hohe : match_repr() and stdprinter_repr() contain calls to PyUnicode_FromFormat() with format specifiers that don't match the arguments. See the upcoming pull request for details. -- components: Interpreter Core, Regular Expressions messages: 337574 nosy: e