Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

os.time()

0 views
Skip to first unread message

Anthony

unread,
May 30, 2006, 4:17:15 AM5/30/06
to pytho...@python.org
i have a problem with the os.times() command, on different Python
versions, i get different printout:

Server1# python
Python 2.3.4 (#1, Feb 2 2005, 11:44:13)
[GCC 3.4.3 20041212 (Red Hat 3.4.3-9.EL4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> import os
>>>
>>> print os.times()[4]
4880406.62


----------------------------------
Server2% python
Python 2.3.2 (#4, Sep 14 2004, 09:41:45) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> import os
>>>
>>> print os.times()[4]
-21464227.74


---------------
Server3% python
Python 2.4.1 (#1, May 16 2005, 15:19:29)
[GCC 4.0.0 20050512 (Red Hat 4.0.0-5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> import os
>>>
>>> print os.times()[4]
18390711.21

and on the 3 servers, the linux command: $date
returns the same value.....

any suggestions???
what is the command that gives me the actual time?

Diez B. Roggisch

unread,
May 30, 2006, 5:25:02 AM5/30/06
to
Anthony wrote:

> i have a problem with the os.times() command, on different Python
> versions, i get different printout:

<snip/>

> and on the 3 servers, the linux command: $date
> returns the same value.....
>
> any suggestions???
> what is the command that gives me the actual time?

time.time(), not os.times(). The latter is for process-times. No idea why it
can become _negative, though.

Diez

Steve Holden

unread,
May 30, 2006, 6:48:59 AM5/30/06
to pytho...@python.org

WANTED: reliable benchmarks to improve Python speed/performance estimation.
REWARD: the thanks of the whole community.

I spent some time at the recent Need For Speed sprint addressing
benchmarking questions, and discovered that we need more benchmark tests
for speed and perfomance. Sean Reifenshneider seems to be on the trail
of one addition, but the, more the merrier. It's not easy to write good
benchmarks ...

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Love me, love my blog http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden

Steve Holden

unread,
May 30, 2006, 5:04:53 PM5/30/06
to pytho...@python.org

WANTED: reliable benchmarks to improve Python speed/performance estimation.

0 new messages