This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author BTaskaya
Recipients BTaskaya, arcivanov, vstinner
Date 2020-07-02.14:19:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593699544.65.0.356715037605.issue41194@roundup.psfhosted.org>
In-reply-to
Content
A shorter reproducer;

>>> import sys
>>> sys.modules.clear()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
RuntimeError: lost builtins module
>>> import _ast
>>> import gc
>>> gc.collect()
Modules/gcmodule.c:114: gc_decref: Assertion "gc_get_refs(g) > 0" failed: refcount is too small
Enable tracemalloc to get the memory block allocation traceback

object address  : 0x7f4c22f843b0
object refcount : 2
object type     : 0x5605f3385660
object type name: module
object repr     : <module '_ast' (built-in)>

Fatal Python error: _PyObject_AssertFailed: _PyObject_AssertFailed
Python runtime state: initialized

Current thread 0x00007f4c23a5d280 (most recent call first):
  File "<stdin>", line 1 in <module>
[1]    21945 abort (core dumped)  ./python
History
Date User Action Args
2020-07-02 14:19:04BTaskayasetrecipients: + BTaskaya, vstinner, arcivanov
2020-07-02 14:19:04BTaskayasetmessageid: <1593699544.65.0.356715037605.issue41194@roundup.psfhosted.org>
2020-07-02 14:19:04BTaskayalinkissue41194 messages
2020-07-02 14:19:04BTaskayacreate