plutonium-94

Results 3 comments of plutonium-94

> OutOfMemoryError 内存泄漏。不知道是不是你的代码问题 不过在没有运行任何脚本的时候也会出现崩溃

Yes, it is a problem related with `__name__` and modules. When I added ```python import sys __name__ = 'some_arbitrary_name' sys.modules[__name__] = sys.modules.pop('__main__') ``` on top of the script, it was...

> Thank you very much. I found that the structref cache misses [#10021](https://github.com/numba/numba/issues/10021) are also caused by this reason, so is this a bug in pickle? How can we report...