Message 67493 - Python tracker

Message67493

Author mark
Recipients collinwinter, mark
Date 2008-05-29.14:20:38
SpamBayes Score 0.16395216
Marked as misclassified No
Message-id <1212070891.46.0.168640128737.issue3000@psf.upfronthosting.co.za>
In-reply-to
Content
Py30a5

2to3 currently does not cope correctly with this:

    print whatever; print

which it converts to:

    print(whatever); print

This is a subtle error since "print" on its own is valid.

Nor does it replace the deprecated string functions,
string.capitalize(), string.count(), string.join(), string.lower(),
string.replace(), string.split(), and string.strip().
History
Date User Action Args
2008-05-29 14:21:32marksetspambayes_score: 0.163952 -> 0.16395216
recipients: + mark, collinwinter
2008-05-29 14:21:31marksetspambayes_score: 0.163952 -> 0.163952
messageid: <1212070891.46.0.168640128737.issue3000@psf.upfronthosting.co.za>
2008-05-29 14:21:30marklinkissue3000 messages
2008-05-29 14:21:02markcreate