summaryrefslogtreecommitdiffstats
path: root/Modules/_tracemalloc.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-26 00:18:52 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-11-26 00:18:52 (GMT)
commit4dc74204c1a51b80fa5b1820bcf792cf89d72f3e (patch)
tree49e79d65747bd28063efea3e85550f465a601a88 /Modules/_tracemalloc.c
parent2ead3d2448ea3a131df91fed5e88b5e64ee8d4e1 (diff)
downloadcpython-4dc74204c1a51b80fa5b1820bcf792cf89d72f3e.zip
cpython-4dc74204c1a51b80fa5b1820bcf792cf89d72f3e.tar.gz
cpython-4dc74204c1a51b80fa5b1820bcf792cf89d72f3e.tar.bz2
Issue #18874: Fix typo
Diffstat (limited to 'Modules/_tracemalloc.c')
-rw-r--r--Modules/_tracemalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c
index 4d48ee8..8ac5f79 100644
--- a/Modules/_tracemalloc.c
+++ b/Modules/_tracemalloc.c
@@ -284,7 +284,7 @@ tracemalloc_get_frame(PyFrameObject *pyframe, frame_t *frame)
code = pyframe->f_code;
if (code == NULL) {
#ifdef TRACE_DEBUG
- tracemalloc_error("failed to get the code object of the a frame");
+ tracemalloc_error("failed to get the code object of the frame");
#endif
return;
}