You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix ASAN crash by avoiding decimal module in import tests
The _decimal C extension has global state (mpd_setminalloc) that cannot
handle being loaded in multiple interpreters. When the import registry
contained decimal, it would be applied to subinterpreters causing memory
corruption detected by AddressSanitizer.
Replace decimal with textwrap (pure Python) in import_in_sys_modules_test.
0 commit comments