If you look at that crasher, you will notice that recursion depth is set to 1 << 30 before any code is run.  If you remove that setting high setting and go with the default then the test doesn't crash and raises the appropriate RuntimeError.
<br><br>Setting the recursion depth to such a high number will crash the interpreter even when the proper recursion checks are in place.&nbsp; This doesn't seem like a legit crasher to me if it requires an insane recursion depth that would crash almost any C program that had recursion in it.
<br><br>Anyone have any objections if I call foul on the test and remove it without any changes to Python?<br><br>-Brett<br>