Google 網路論壇不再支援新的 Usenet 貼文或訂閱項目,但過往內容仍可供查看。

os.time()

瀏覽次數:0 次
跳到第一則未讀訊息

Anthony

未讀,
2006年5月30日 凌晨4:17:152006/5/30
收件者: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

未讀,
2006年5月30日 清晨5:25:022006/5/30
收件者:
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

未讀,
2006年5月30日 清晨6:48:592006/5/30
收件者: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

未讀,
2006年5月30日 下午5:04:532006/5/30
收件者:pytho...@python.org

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

0 則新訊息