Andre Roberge added the comment:
> (Anyone really want log of error?)
If by this you mean having access to the error from a known place (like
sys.last_traceback or something else specific to IDLE but available from a
script), then the answer from me is definitely yes.
--
nosy: +arob
New submission from Terry J. Reedy :
In 3.10 and 3.11:
>>> while s := input.read(MAXBINSIZE):
... while len(s) < MAXBINSIZE and ns := input.read(MAXBINSIZE-len(s)):
File "", line 2
while len(s) < MAXBINSIZE and ns := input.read(MAXBINSIZE-len(s)):
^^