summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-07-10 19:29:49 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-07-10 19:29:49 (GMT)
commit889f61dcfbdccf4d1de7da354ee6165e488e4665 (patch)
treea0a78b00f5372fb4b43a7f87a2ea9325fbaa6a94 /Objects
parente4523c46b9430a29d00995a50b723536cebbd18c (diff)
downloadcpython-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.c2
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 */