Message 382057 - Python tracker

Message382057

Author veky
Recipients ronaldoussoren, veky, xxm
Date 2020-11-29.12:08:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1606651702.39.0.984912358505.issue42500@roundup.psfhosted.org>
In-reply-to
Content
Recursion limit is probably set too high, but nonetheless, the program is nonsensical, the line 39 especially.

The reason for difference in behavior is that RecursionError is caught by blank except in the earlier Pythons, while it crashes the stack in later ones. In any case, it's almost certain this isn't what you wanted to write.

(And yet another reason to remove blank except from Python: it abuse to correct use ratio is probably over two orders of magnitude.)
History
Date User Action Args
2020-11-29 12:08:22vekysetrecipients: + veky, ronaldoussoren, xxm
2020-11-29 12:08:22vekysetmessageid: <1606651702.39.0.984912358505.issue42500@roundup.psfhosted.org>
2020-11-29 12:08:22vekylinkissue42500 messages
2020-11-29 12:08:22vekycreate