[issue40021] Throwing an Exception results in stack overflow

2020-03-19 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Interpreter aborts when chaining an infinite number of exceptions versions: -Python 3.8 ___ Python tracker

[issue40021] Throwing an Exception results in stack overflow

2020-03-19 Thread ThePokestarFan
ThePokestarFan added the comment: I tested the program against my 3.8 installation and got the same error. -- versions: +Python 3.8 ___ Python tracker ___

[issue40021] Throwing an Exception results in stack overflow

2020-03-19 Thread ThePokestarFan
Change by ThePokestarFan : Added file: https://bugs.python.org/file48987/program.py ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40021] Throwing an Exception results in stack overflow

2020-03-19 Thread ThePokestarFan
Change by ThePokestarFan : Added file: https://bugs.python.org/file48986/python2.txt ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40021] Throwing an Exception results in stack overflow

2020-03-19 Thread ThePokestarFan
Change by ThePokestarFan : Added file: https://bugs.python.org/file48985/interpter.txt ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40021] Throwing an Exception results in stack overflow

2020-03-19 Thread ThePokestarFan
New submission from ThePokestarFan : If I set up a simple recursion exception function, that calls itself every time an error is raised, Python throws a SIGABRT and crashes due to a "Stack Overflow". def x(): try: raise Exception() except Exception: x() Oddly