Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
> ./configure --enable-pystats --with-pydebug> make -j..._bootstrap_python: ../../cpython/Include/object.h:215: Py_SIZE: Assertion `ob->ob_type != &PyLong_Type' failed.It looks like#102464 missed removing this use ofPy_SIZE on aPyLongObject because it is gated behind#ifdef Py_STATS.
When debug is enabled, this causes an assertion to fail. Without assertions, I think it can cause inaccurate stats collection forSTORE_SUBSCR specialization failures.