From 4dc74204c1a51b80fa5b1820bcf792cf89d72f3e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 26 Nov 2013 01:18:52 +0100 Subject: Issue #18874: Fix typo --- Modules/_tracemalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v0.12