[issue23396] Wrong print for 2.7.9

2015-02-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2bb5fa752bfc by Benjamin Peterson in branch '2.7': remove parenthesis from print statement (closes #23396) https://hg.python.org/cpython/rev/2bb5fa752bfc -- nosy: +python-dev resolution: -> fixed stage: -> resolved status: open -> closed

[issue23396] Wrong print for 2.7.9

2015-02-04 Thread John Boersma
John Boersma added the comment: To clarify - this is in tutorial section 3.1.2. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue23396] Wrong print for 2.7.9

2015-02-04 Thread John Boersma
New submission from John Boersma: In the tutorial for 2.7.9, in the section on quotes and the escape character, there is the following example text: >>> '"Isn\'t," she said.' '"Isn\'t," she said.' >>> print '"Isn\'t," she said.' "Isn't," she said. >>> s = 'First line.\nSecond line.' # \n means