We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b4f95 commit 1b88b75Copy full SHA for 1b88b75
Objects/obmalloc.c
@@ -467,7 +467,7 @@ _PyMem_ArenaAlloc(void *Py_UNUSED(ctx), size_t size)
467
if (ptr == MAP_FAILED)
468
return NULL;
469
assert(ptr != NULL);
470
- _PyAnnotateMemoryMap(ptr, size, "cpython:obmalloc:PyMem_ArenaAlloc");
+ _PyAnnotateMemoryMap(ptr, size, "cpython:obmalloc");
471
return ptr;
472
#else
473
return malloc(size);
0 commit comments