[issue28028] Convert warnings to SyntaxWarning in parser

2017-10-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Closed because I don't see ways to do this. -- resolution: -> wont fix stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue28028] Convert warnings to SyntaxWarning in parser

2016-10-31 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg279836 ___ Python tracker ___

[issue28028] Convert warnings to SyntaxWarning in parser

2016-10-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 88e3df38d591 by Ned Deily in branch '3.6': Issue #28028: Update OS X installers to use SQLite 3.14.2. https://hg.python.org/cpython/rev/88e3df38d591 -- nosy: +python-dev ___ Python tracker

[issue28028] Convert warnings to SyntaxWarning in parser

2016-10-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: -Python 3.6 ___ Python tracker ___

[issue28028] Convert warnings to SyntaxWarning in parser

2016-10-31 Thread Emanuel Barry
Changes by Emanuel Barry : -- priority: high -> normal ___ Python tracker ___ ___

[issue28028] Convert warnings to SyntaxWarning in parser

2016-10-28 Thread Emanuel Barry
Emanuel Barry added the comment: Cross-ping from #28128 I think it would be best to solve this issue, solving both #28128 and any future warning-introducing feature or deprecation. I've marked this issue as a dependency for #28128 as well as upping the priority. There are less than 7 weeks

[issue28028] Convert warnings to SyntaxWarning in parser

2016-09-08 Thread Emanuel Barry
Changes by Emanuel Barry : -- nosy: +ebarry ___ Python tracker ___ ___ Python-bugs-list

[issue28028] Convert warnings to SyntaxWarning in parser

2016-09-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: AST parser converts UnicodeError and ValueError raised during parsing string literal to SyntaxError. Maybe make it converting warnings (see issue27364) to SyntaxWarning? -- components: Interpreter Core messages: 275122 nosy: serhiy.storchaka