commit | d57f26c753dce61f72b52b96db3a3253d9f2fc3e | [log] [tgz] |
---|---|---|
author | Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com> | Sat Jan 20 08:42:22 2018 +0530 |
committer | Nick Coghlan <ncoghlan@gmail.com> | Sat Jan 20 13:12:22 2018 +1000 |
tree | 45edd2bbbd2a8abdfefacf29a52ad45e8a1dfbb4 | |
parent | 6690bb9f17d34eb3dec0aca8919d8d27d6c3c452 [diff] |
bpo-32028: Fix suggestions for indented print statements (GH-4688) The suggested replacement for print statements previously failed to account for leading whitespace and hence could end up including unwanted text in the proposed call to the print builtin. Patch by Sanyam Khurana.