Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Sorry, I don't see any value in this kind of patch.
The line "contline = += line" is broken. The "+=" transformations and else-clause eliminations trivially re-arrange code without any real savings. The "while 1" to "while True" transformation should not be done in Py2.x because the latter is much slower ("while True" requires loading a global variable and a test; in contrast, "while 1" is optimized to an unconditional jump. ---------- nosy: +rhettinger resolution: -> rejected status: open -> closed _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3078> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com