Re: what is java's System.currentTimeMillis() in python

2006-09-07 Thread skip
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.ti

what is java's System.currentTimeMillis() in python

2006-09-07 Thread neoedmund
/** * Returns the current time in milliseconds. Note that * while the unit of time of the return value is a millisecond, * the granularity of the value depends on the underlying * operating system and may be larger. For example, many * operating systems measure time