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 jondaa
Recipients jondaa
Date 2018-12-05.10:10:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544004619.56.0.788709270274.issue35417@psf.upfronthosting.co.za>
In-reply-to
Content
If 2to3 is run on a file with the following contents:
a="string"
print ("%s" % a)

The output is:

a="string"
print (("%s" % a))

Although it was already a valid call to print in python3.
History
Date User Action Args
2018-12-05 10:10:19jondaasetrecipients: + jondaa
2018-12-05 10:10:19jondaasetmessageid: <1544004619.56.0.788709270274.issue35417@psf.upfronthosting.co.za>
2018-12-05 10:10:19jondaalinkissue35417 messages
2018-12-05 10:10:19jondaacreate