summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-09-11 17:09:45 (GMT)
committerMichael W. Hudson <mwh@python.net>2002-09-11 17:09:45 (GMT)
commit806d1c817aad83c3381355d7d56a0ae2a427c1ff (patch)
tree02e6245d40c04ac543cf6483636af9e2da262475 /Modules
parentfcd7353863c024bb87aabe7c4639ca8df692ac85 (diff)
downloadcpython-806d1c817aad83c3381355d7d56a0ae2a427c1ff.zip
cpython-806d1c817aad83c3381355d7d56a0ae2a427c1ff.tar.gz
cpython-806d1c817aad83c3381355d7d56a0ae2a427c1ff.tar.bz2
Fix *really* embarrassing typo reported by Raymond Hettinger.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_hotshot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c
index e12e5e5..bd08919 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);