From: Victor Stinner Date: Tue, 26 Nov 2013 00:18:52 +0000 (+0100) Subject: Issue #18874: Fix typo X-Git-Tag: v3.4.0b2~474 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4dc74204c1a51b80fa5b1820bcf792cf89d72f3e;p=python Issue #18874: Fix typo --- diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 4d48ee82d1..8ac5f79793 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; }