Revision 988
Added by Aaron Marcuse-Kubitza almost 13 years ago
exc.py | ||
---|---|---|
57 | 57 |
|
58 | 58 |
def msg(self): |
59 | 59 |
msg = ExTracker.msg(self) |
60 |
if self.iter_ct != None: msg += ('/'+str(self.iter_ct)+' ' |
|
61 |
+self.iter_text+'(s)'+' = '
|
|
60 |
if self.iter_ct != None: msg += ('/'+util.int2str(self.iter_ct)+' '
|
|
61 |
+self.iter_text+'(s) = ' |
|
62 | 62 |
+util.to_percent(float(self.e_ct)/self.iter_ct)) |
63 | 63 |
return msg |
Also available in: Unified diff
exc.py, profiling.py: Use util.int2str() to print # iters with thousands separators