os.time()

A

Anthony

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?
 
D

Diez B. Roggisch

Anthony said:
i have a problem with the os.times() command, on different Python
versions, i get different printout:
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
 
S

Steve Holden

Diez said:
Anthony wrote:






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

Diez

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
 
S

Steve Holden

Diez said:
Anthony wrote:






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

Diez

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top