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
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
#141 implemented BUILD_LIST_UNPACK using recursion. While fine, it creates a lot of locals which could trigger a OOM error in crazy edge cases. It wouldn't hurt to avoid that situation if possible.
The text was updated successfully, but these errors were encountered:
brettcannon
changed the title
Look into OOM errors from recursive implementation of BUILD_LIST_UNPACK
Look into handling potential OOM errors from recursive implementation of BUILD_LIST_UNPACK
Feb 22, 2016
There should also be a way to avoid storing the temp locally by simply pushing back on to the stack the object being extended and swapping the order of PyJist_ExtendList().
#141 implemented
BUILD_LIST_UNPACK
using recursion. While fine, it creates a lot of locals which could trigger a OOM error in crazy edge cases. It wouldn't hurt to avoid that situation if possible.The text was updated successfully, but these errors were encountered: