From: Michael W. Hudson Date: Wed, 11 Sep 2002 17:09:45 +0000 (+0000) Subject: Fix *really* embarrassing typo reported by Raymond Hettinger. X-Git-Tag: v2.3c1~4130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=806d1c817aad83c3381355d7d56a0ae2a427c1ff;p=thirdparty%2FPython%2Fcpython.git Fix *really* embarrassing typo reported by Raymond Hettinger. --- diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c index e12e5e5bf874..bd089191142e 100644 --- a/Modules/_hotshot.c +++ b/Modules/_hotshot.c @@ -888,7 +888,7 @@ tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what, case PyTrace_LINE: if (self->linetimings) - return pack_lineno_tdelta(self, frame->f_lineno), + return pack_lineno_tdelta(self, frame->f_lineno, get_tdelta(self)); else return pack_lineno(self, frame->f_lineno);