David <[email protected]> added the comment: I typoed when copying my second snippet.
while request_buffer.splitlines[-1] != "" or request_buffer == "": It should be: while request_buffer.splitlines()[-1] != "" or request_buffer == "": This code has the problem that I'm complaining of. I only failed at copying by-hand into the form. ---------- _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue7638> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
