diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 15:05:18 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 15:05:18 (GMT) |
commit | 444f124fcf5e275ee4dd040e4a75f790c2b4166f (patch) | |
tree | 304105dc36b705b18fb5abe03b3b608a038e7255 /Modules | |
parent | 376658fa13f5c56a89a47ced0c5a88c43ce508b7 (diff) | |
download | cpython-444f124fcf5e275ee4dd040e4a75f790c2b4166f.zip cpython-444f124fcf5e275ee4dd040e4a75f790c2b4166f.tar.gz cpython-444f124fcf5e275ee4dd040e4a75f790c2b4166f.tar.bz2 |
_tracemalloc.c: Fix typo
Diffstat (limited to 'Modules')
-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 bbe7259..409f4db 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -60,7 +60,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)) |