mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)
This commit is contained in:
parent
042f31da55
commit
4dc746310b
6 changed files with 21 additions and 6 deletions
|
@ -14,9 +14,13 @@
|
|||
#include "Python/frozen_modules/importlib._bootstrap_external.h"
|
||||
/* End includes */
|
||||
|
||||
/* Empty finalizer for deepfrozen modules*/
|
||||
/* Empty initializer for deepfrozen modules */
|
||||
void _Py_Deepfreeze_Init(void)
|
||||
{
|
||||
}
|
||||
/* Empty finalizer for deepfrozen modules */
|
||||
void
|
||||
_Py_Deepfreeze_Fini(void)
|
||||
_Py_Deepfreeze_Fini(void)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue