]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[Backport patch #649762] Fix for asynchat endless loop
authorAndrew M. Kuchling <amk@amk.ca>
Wed, 12 Mar 2003 14:11:00 +0000 (14:11 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Wed, 12 Mar 2003 14:11:00 +0000 (14:11 +0000)
commitae77a606a54b59e897b2e1d7839934c2c549c35b
treedd7e3b9b32cd2e912102bcf0ef2b38533dbe7b74
parent2c3d827248d9b6e806f2d25606f51709cfd1c15f
[Backport patch #649762] Fix for asynchat endless loop
When the null string is used as the terminator, it used to be the same
as None, meaning "collect all the data".  In the current code, however, it
falls into an endless loop; this change reverts to the old behavior.
Lib/asynchat.py