[Python-checkins] cpython (3.4): _tracemalloc.c: Fix typo

victor.stinner python-checkins at python.org
Wed Mar 18 16:05:49 CET 2015


https://hg.python.org/cpython/rev/f6b773e1123e
changeset:   95046:f6b773e1123e
branch:      3.4
parent:      95040:01cb2107cbc3
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Mar 18 16:05:18 2015 +0100
summary:
  _tracemalloc.c: Fix typo

files:
  Modules/_tracemalloc.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c
--- a/Modules/_tracemalloc.c
+++ b/Modules/_tracemalloc.c
@@ -60,7 +60,7 @@
 /* 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))

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list