diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-10 19:29:49 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-10 19:29:49 (GMT) |
commit | 889f61dcfbdccf4d1de7da354ee6165e488e4665 (patch) | |
tree | a0a78b00f5372fb4b43a7f87a2ea9325fbaa6a94 /Objects | |
parent | e4523c46b9430a29d00995a50b723536cebbd18c (diff) | |
download | cpython-889f61dcfbdccf4d1de7da354ee6165e488e4665.zip cpython-889f61dcfbdccf4d1de7da354ee6165e488e4665.tar.gz cpython-889f61dcfbdccf4d1de7da354ee6165e488e4665.tar.bz2 |
Documented PYMALLOC_DEBUG. This completes primary coverage of all the
"special builds" I ever use. If you use others, document them here, or
don't be surprised if I rip out the code for them <0.5 wink>.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index 14f9e25..22481ad 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -881,7 +881,7 @@ PyObject_Free(void *p) #undef DEADBYTE #undef FORBIDDENBYTE #define CLEANBYTE 0xCB /* clean (newly allocated) memory */ -#define DEADBYTE 0xDB /* deed (newly freed) memory */ +#define DEADBYTE 0xDB /* dead (newly freed) memory */ #define FORBIDDENBYTE 0xFB /* untouchable bytes at each end of a block */ static ulong serialno = 0; /* incremented on each debug {m,re}alloc */ |