summaryrefslogtreecommitdiff
path: root/Objects/obmalloc.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-07-10 19:29:49 +0000
committerTim Peters <tim.peters@gmail.com>2002-07-10 19:29:49 +0000
commit2b4b03003e4d181de1894b576cd698a6664498cf (patch)
tree36a91cf7f28085c60de736d7b9fe62f5f79748bd /Objects/obmalloc.c
parentf82f86fed352a5337a15b8e60310ebedb848fa75 (diff)
downloadcpython-2b4b03003e4d181de1894b576cd698a6664498cf.tar.gz
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/obmalloc.c')
-rw-r--r--Objects/obmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c
index 14f9e2574a..22481ad1a2 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 */