[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2018-01-19 Thread Nick Coghlan
Nick Coghlan added the comment: Thanks CuriousLearner for the PR and mdraw for the original issue report! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2018-01-19 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 4002d5dbf4c058bbf2462f9f5dea057956d1caff by Nick Coghlan (Miss Islington (bot)) in branch '3.6': [3.6] bpo-32028: Fix suggestions for indented print statements (GH-5249)

[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2018-01-19 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +5096 ___ Python tracker ___

[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2018-01-19 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset d57f26c753dce61f72b52b96db3a3253d9f2fc3e by Nick Coghlan (Sanyam Khurana) in branch 'master': bpo-32028: Fix suggestions for indented print statements (GH-4688)

[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2017-12-03 Thread Sanyam Khurana
Change by Sanyam Khurana : -- keywords: +patch pull_requests: +4601 stage: test needed -> patch review ___ Python tracker

[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2017-11-14 Thread Sanyam Khurana
Sanyam Khurana added the comment: Sure, let me have a look at it and work on fix. -- ___ Python tracker ___

[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2017-11-14 Thread Nick Coghlan
Nick Coghlan added the comment: Given the symptoms (stripping 4 spaces + "pr" from the start of the line, leaving "int " behind), it looks like we're not stripping the leading whitespace when determining the text to include in the suggested print() call. To reproduce this

[issue32028] Syntactically wrong suggestions by the new custom print statement error message

2017-11-14 Thread Martin Drawitsch
New submission from Martin Drawitsch : I think I found a bug in the new print syntax suggestion introduced by https://bugs.python.org/issue30597. When the following code is executed by Python 3.6.3 inside of a .py file: def f(): print '%d' % 2 , then