diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 16:05:32 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 16:05:32 +0100 |
commit | cb7e5f6f087057570682c961666fb60dae688bc5 (patch) | |
tree | 59bb3691003f16153413cc6a66f7ec85cecb67b8 /Modules/_tracemalloc.c | |
parent | e371b3d21a53fb31c41d4c81143c0ea0fd2cc9e3 (diff) | |
parent | 444f124fcf5e275ee4dd040e4a75f790c2b4166f (diff) | |
download | cpython-git-cb7e5f6f087057570682c961666fb60dae688bc5.tar.gz |
Merge 3.4 (tracemalloc typo)
Diffstat (limited to 'Modules/_tracemalloc.c')
-rw-r--r-- | Modules/_tracemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 12e32eb6a2..226a473b4c 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -57,7 +57,7 @@ static PyThread_type_lock tables_lock; /* Pack the frame_t structure to reduce the memory footprint on 64-bit architectures: 12 bytes instead of 16. This optimization might produce SIGBUS on architectures not supporting unaligned memory accesses (64-bit - IPS CPU?): on such architecture, the structure must not be packed. */ + MIPS CPU?): on such architecture, the structure must not be packed. */ typedef struct #ifdef __GNUC__ __attribute__((packed)) |