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/
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()
utim
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/