This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bazooka
Recipients bazooka
Date 2009-07-09.20:16:03
SpamBayes Score 4.0578016e-05
Marked as misclassified No
Message-id <1247170565.19.0.652670356582.issue6451@psf.upfronthosting.co.za>
In-reply-to
Content
from __future__ import print_function
    print('Foo','Bar')
    print('FooBar')

2to3 translates it to

    print(('Foo','Bar'))
    print('FooBar')

is it right?
History
Date User Action Args
2009-07-09 20:16:05bazookasetrecipients: + bazooka
2009-07-09 20:16:05bazookasetmessageid: <1247170565.19.0.652670356582.issue6451@psf.upfronthosting.co.za>
2009-07-09 20:16:04bazookalinkissue6451 messages
2009-07-09 20:16:04bazookacreate