summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-04-12 07:43:07 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-04-12 07:43:07 (GMT)
commitf539c68ccd33ce140e5a15be3dcdbe4132d43948 (patch)
treed3d27dffe0d42ae12c02f8f925a708868ec7cd2d
parentf6fb501c577ede5c3681a703925abf36e69bc5b9 (diff)
downloadcpython-f539c68ccd33ce140e5a15be3dcdbe4132d43948.zip
cpython-f539c68ccd33ce140e5a15be3dcdbe4132d43948.tar.gz
cpython-f539c68ccd33ce140e5a15be3dcdbe4132d43948.tar.bz2
_PyObject_DebugDumpAddress(): clarify an output message.
-rw-r--r--Objects/obmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c
index b29758c..dcef1c5 100644
--- a/Objects/obmalloc.c
+++ b/Objects/obmalloc.c
@@ -1102,7 +1102,7 @@ _PyObject_DebugDumpAddress(const void *p)
return;
nbytes = read4(q-8);
- fprintf(stderr, " %lu bytes originally allocated\n", nbytes);
+ fprintf(stderr, " %lu bytes originally requested\n", nbytes);
/* In case this is nuts, check the pad bytes before trying to read up
the serial number (the address deref could blow up). */