We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
_imp.is_lazy_imports_enabled
assert(0)
It's possible to hit an assert(0) in PyImport_IsLazyImportsEnabled by calling _imp.is_lazy_imports_enabled in a thread:
PyImport_IsLazyImportsEnabled
from threading import Thread import _imp Thread(target=_imp.is_lazy_imports_enabled, args=()).start()
Abort message:
python: Python/import.c:4640: PyImport_IsLazyImportsEnabled: Assertion `0' failed. Aborted
I'm not sure this is relevant, but since it's the only fuzzing hit that happened in Cinder but not CPython, thought it better to report.
python -VV:
python -VV
Python 3.12.4+meta (heads/meta/3.12:55b50e149d4, Dec 3 2024, 21:56:02) [GCC 11.4.0]
Found using fusil by @vstinner.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's possible to hit an
assert(0)
inPyImport_IsLazyImportsEnabled
by calling_imp.is_lazy_imports_enabled
in a thread:Abort message:
I'm not sure this is relevant, but since it's the only fuzzing hit that happened in Cinder but not CPython, thought it better to report.
python -VV
:Found using fusil by @vstinner.
The text was updated successfully, but these errors were encountered: