diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-05-14 17:24:35 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-05-14 17:24:35 +0200 |
commit | 45e8e2f2185fc593ae84a628922c5cbb1799b6ea (patch) | |
tree | 5a6706f3fd37947b574fe44c45f6c4cb6f6f7c53 /Modules/_tracemalloc.c | |
parent | 79b49ab553f74560d71dd027db252f4f0ddd0304 (diff) | |
download | cpython-git-45e8e2f2185fc593ae84a628922c5cbb1799b6ea.tar.gz |
Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()
Keep _Py_STRINGIZE() in PC/pyconfig.h to not introduce a dependency between
pyconfig.h and pymacros.h.
Diffstat (limited to 'Modules/_tracemalloc.c')
-rw-r--r-- | Modules/_tracemalloc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index e254a9029d..429b209c02 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -16,9 +16,6 @@ static void raw_free(void *ptr); # define TRACE_DEBUG #endif -#define _STR(VAL) #VAL -#define STR(VAL) _STR(VAL) - /* Protected by the GIL */ static struct { PyMemAllocator mem; |