You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If (either by sloppy programming [on the user's part] or some other mischance) an instruction requires more than sys.maxsize bytes to execute the REPL crashes. If I had to hazard a guess as to what is causing the problem I would suggest the trouble occurs when trying to compute the number of bytes to report in the MemoryLimit exception. (Note that I have no idea what is actually going on here...)
Here are the simplest steps to reproduce the problem I've managed to come up with in the short time I've messed with this: >>> ''.join('a' for i in range(1024)) >>> _*2**29
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
If (either by sloppy programming [on the user's part] or some other mischance) an instruction requires more than sys.maxsize bytes to execute the REPL crashes. If I had to hazard a guess as to what is causing the problem I would suggest the trouble occurs when trying to compute the number of bytes to report in the MemoryLimit exception. (Note that I have no idea what is actually going on here...)
Here are the simplest steps to reproduce the problem I've managed to come up with in the short time I've messed with this:
>>> ''.join('a' for i in range(1024))
>>> _*2**29
The text was updated successfully, but these errors were encountered: