Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_list.ListTest.test_no_memory triggers _Py_Dealloc assertion #130813

Closed
colesbury opened this issue Mar 3, 2025 · 1 comment
Closed

test_list.ListTest.test_no_memory triggers _Py_Dealloc assertion #130813

colesbury opened this issue Mar 3, 2025 · 1 comment
Labels
tests Tests in the Lib/test dir type-bug An unexpected behavior, bug, or error

Comments

@colesbury
Copy link
Contributor

colesbury commented Mar 3, 2025

Seen in https://github.com/python/cpython/actions/runs/13641172744/job/38131193209

======================================================================
FAIL: test_no_memory (test.test_list.ListTest.test_no_memory)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/runner/work/cpython/cpython-ro-srcdir/Lib/test/test_list.py", line 328, in test_no_memory
    self.assertIn("MemoryError", err.decode("utf-8"))
    ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: 'MemoryError' not found in 'python: ../cpython-ro-srcdir/Objects/object.c:2990: _Py_Dealloc: Assertion `tstate->current_frame == NULL || tstate->current_frame->stackpointer != NULL\' failed.\nFatal Python error: Aborted\n\nCurrent thread 0x00007faf0c6f3740 (most recent call first):\n  File "<string>", line 7 in <module>\n\nExtension modules: _testcapi (total: 1)\n'

----------------------------------------------------------------------

cpython/Objects/object.c

Lines 2980 to 2991 in 3a7f17c

void
_Py_Dealloc(PyObject *op)
{
PyTypeObject *type = Py_TYPE(op);
destructor dealloc = type->tp_dealloc;
#ifdef Py_DEBUG
PyThreadState *tstate = _PyThreadState_GET();
#ifndef Py_GIL_DISABLED
/* This assertion doesn't hold for the free-threading build, as
* PyStackRef_CLOSE_SPECIALIZED is not implemented */
assert(tstate->current_frame == NULL || tstate->current_frame->stackpointer != NULL);
#endif

cc @markshannon

@colesbury colesbury added tests Tests in the Lib/test dir type-bug An unexpected behavior, bug, or error labels Mar 3, 2025
@colesbury
Copy link
Contributor Author

Ugh, sorry, looked at the wrong job while trying to track down flaky tests.

@colesbury colesbury closed this as not planned Won't fix, can't repro, duplicate, stale Mar 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tests Tests in the Lib/test dir type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

No branches or pull requests

1 participant