Commit 119279de authored by Guido van Rossum's avatar Guido van Rossum

Comment out 't = t[0] + t[1]' in profiler_simulation() -- this

function is only used when running the calibration code, and it turns
out that recent changes in the timing code caused this statement to
raise an exception.
parent e45c3342
......@@ -517,7 +517,7 @@ class Profile:
# simulate an event processing activity (from user's perspective)
def profiler_simulation(self, x, y, z):
t = self.timer()
t = t[0] + t[1]
## t = t[0] + t[1]
self.ut = t
......
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