[issue8029] bug in 2to3 dealing with "print FOO, " followed by "sys.stdout.write('')"

2021-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: -> resolved status: open -> closed superseder: -> Close 2to3 issues and list them here ___ Python tracker ___

[issue8029] bug in 2to3 dealing with "print FOO, " followed by "sys.stdout.write('')"

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8029] bug in 2to3 dealing with print FOO, followed by sys.stdout.write('')

2014-06-15 Thread Mark Lawrence
Mark Lawrence added the comment: @Benjamin could you review the patch please. -- nosy: +BreamoreBoy type: - behavior versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8029

[issue8029] bug in 2to3 dealing with print FOO, followed by sys.stdout.write('')

2010-04-07 Thread Matt Bond
Matt Bond bo...@uoguelph.ca added the comment: I've attached a patch that fixes this particular idiom as well as a problem with the handling of bare 'print' statements. It also includes updated tests for these issues. -- keywords: +patch nosy: +zxaos Added file:

[issue8029] bug in 2to3 dealing with print FOO, followed by sys.stdout.write('')

2010-02-28 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8029 ___ ___

[issue8029] bug in 2to3 dealing with print FOO, followed by sys.stdout.write('')

2010-02-27 Thread Trent Mick
New submission from Trent Mick tre...@gmail.com: According to http://docs.python.org/reference/simple_stmts.html#the-print-statement the following with result in the print statement NOT printing a trailing space: import sys print uASD,; sys.stdout.write(u) However, 2to3 currently