[issue2205] os.times() returns incorrect value

2008-02-29 Thread Georg Brandl
Georg Brandl added the comment: Isn't that tracked in #1040026? -- nosy: +georg.brandl __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2205 __ ___ Python-bugs-list

[issue2205] os.times() returns incorrect value

2008-02-28 Thread makoto kuwata
makoto kuwata added the comment: I'm sorry to put empty submit. os.time() returns incorrect value. test.py: def f(n): if n = 0: return 1 else: return f(n-1) + f(n-2) import os t1 = os.times() f(34) t2 = os.times() utime = t2[0]

[issue2205] os.times() returns incorrect value

2008-02-28 Thread makoto kuwata
makoto kuwata added the comment: See http://groups.google.com/group/comp.lang.python/browse_thread/thread/8032897a30781df/c656a79d4c3268a6 for details about this bug. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2205 __