[issue2205] os.times() returns uncorrect value

2008-02-28 Thread makoto kuwata
Changes by makoto kuwata: -- components: Library (Lib) nosy: kwatch severity: normal status: open title: os.times() returns uncorrect value type: behavior versions: Python 2.5 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2205

[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