Change by Nick Drozd :
--
keywords: +patch
pull_requests: +29267
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/31083
___
Python tracker
<https://bugs.python.org/issu
Nick Drozd added the comment:
> Is there any measurable performance benefit from this?
I wouldn't expect any performance changes either way. If it worked out to be
slower, that would an unpleasant surprise and a good reason to reject this
change. If it worked out to be faster, we
New submission from Nick Drozd :
The following pattern occurs a few times in the codebase:
while 1:
data = conn.recv(blocksize)
if not data:
break
...
There is an unbounded while loop in which some kind of input is read. If the
input is there, it is processed
New submission from Nick Drozd :
In certain very, very specific circumstances, Pylint can cause the interpreter
to abort with a stack overflow error.
I've seen this issue on 3.5, 3.6, and 3.8 (I assume it affects 3.7 as well) and
on both Mac and Ubuntu.
It requires:
* 1.7 <