From b16b4e45923f4e4dfd8e970ae4e6a934faf73b79 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 17 May 2019 15:20:52 +0200 Subject: bpo-36763: Add PyMemAllocatorName (GH-13387) * Add PyMemAllocatorName enum * _PyPreConfig.allocator type becomes PyMemAllocatorName, instead of char* * Remove _PyPreConfig_Clear() * Add _PyMem_GetAllocatorName() * Rename _PyMem_GetAllocatorsName() to _PyMem_GetCurrentAllocatorName() * Remove _PyPreConfig_SetAllocator(): just call _PyMem_SetupAllocators() directly, we don't have do reallocate the configuration with the new allocator anymore! * _PyPreConfig_Write() parameter becomes const, as it should be in the first place! --- Programs/_testembed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Programs') diff --git a/Programs/_testembed.c b/Programs/_testembed.c index b1b7c6e0ffc..3327c8ce663 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -379,7 +379,7 @@ static int test_init_from_config(void) _PyPreConfig preconfig = _PyPreConfig_INIT; putenv("PYTHONMALLOC=malloc_debug"); - preconfig.allocator = "malloc"; + preconfig.allocator = PYMEM_ALLOCATOR_MALLOC; putenv("PYTHONUTF8=0"); Py_UTF8Mode = 0; -- cgit v1.2.3-65-gdbad