Kaydet (Commit) 2e39d809 authored tarafından Nicholas Bastin's avatar Nicholas Bastin

Fix SF Bug #989066

üst 7b7acd1d
......@@ -216,7 +216,7 @@ class Profile:
t = t[0] + t[1] - self.t - self.bias
if event == "c_call":
self.c_func_name = arg
self.c_func_name = repr(arg)
if self.dispatch[event](self, frame,t):
t = timer()
......@@ -233,7 +233,7 @@ class Profile:
t = timer() - self.t - self.bias
if event == "c_call":
self.c_func_name = arg
self.c_func_name = repr(arg)
if self.dispatch[event](self, frame, t):
self.t = timer()
......@@ -248,7 +248,7 @@ class Profile:
t = timer()/60.0 - self.t - self.bias
if event == "c_call":
self.c_func_name = arg
self.c_func_name = repr(arg)
if self.dispatch[event](self, frame, t):
self.t = timer()/60.0
......@@ -262,7 +262,7 @@ class Profile:
t = get_time() - self.t - self.bias
if event == "c_call":
self.c_func_name = arg
self.c_func_name = repr(arg)
if self.dispatch[event](self, frame, t):
self.t = get_time()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment