neoedmund>     public static native long currentTimeMillis();

    neoedmund> python's time.clock() time.time() return a float, i think
    neoedmund> it's not as handy as java's currentTimeMillis() any good
    neoedmund> solution?

How about

    int(time.clock() * 1000)

or

    int(time.time() * 1000)

?

Skip
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to