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
When working with signals in the console, any outputs are stored in the global Out array. This might prevent the garbage collector from freeing otherwise orphaned (closed) signals. The easiest way to avoid this is probably to disable the Out array entirely by calling ip.displayhook.do_full_cache = False during console setup.
The text was updated successfully, but these errors were encountered:
When working with signals in the console, any outputs are stored in the global
Out
array. This might prevent the garbage collector from freeing otherwise orphaned (closed) signals. The easiest way to avoid this is probably to disable theOut
array entirely by callingip.displayhook.do_full_cache = False
during console setup.The text was updated successfully, but these errors were encountered: