]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[Patch #649762] Fix for asynchat endless loop
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 10 Mar 2003 15:16:54 +0000 (15:16 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 10 Mar 2003 15:16:54 +0000 (15:16 +0000)
commita416341b3067306959397e896bd6b712501bd28c
treef251c7417f83a183a542f09ad6c0495124678e3b
parent5b8c69f11e98ec77155438d948307a419f091dc7
[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