[issue3000] 2to3 doesn't handle print(whatever); print nor string.* functions

2008-09-12 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: The print problem was fixed in r66418. The string problem is a duplicate of #2899. -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED]

[issue3000] 2to3 doesn't handle print(whatever); print nor string.* functions

2008-07-01 Thread Mark Summerfield
Changes by Mark Summerfield [EMAIL PROTECTED]: -- type: - behavior ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3000 ___ ___ Python-bugs-list mailing

[issue3000] 2to3 doesn't handle print(whatever); print nor string.* functions

2008-05-29 Thread Mark Summerfield
New submission from Mark Summerfield [EMAIL PROTECTED]: 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