Closed jpmaterial closed 7 years ago
I just tried this on my codebase that has this fix in it #1625 and I don't see the StackOverflowException.
That's good. When will the next release with this fix be?
I'd like to do one within the next couple of weeks.
@slide I don't think this one is related to #1625. I can reproduce over here on 64-bit (although only intermittently).
Ok, we can continue to look into it of course.
May be related to #1070.
Did a bit of digging and boiled it down to the following repro:
def test_gh1628():
def error():
raise Exception()
for _ in xrange(100000):
try:
error()
except Exception:
continue
This seems to fail somewhat consistently for me when run with ipy64.
Bingo, that reproduction produces a stack overflow for me too.
I think this is the same issue as #1570
This issue was moved to IronLanguages/ironpython2#40
The simple act of importing SimpleHTTPServer causes a stack overflow. I'm on Windows 10. It's the same under cmd.exe, PowerShell and MinGW. This is my complete console output: