Re: Getting milliseconds in Python

2005-02-16 Thread mjs7231
"Return the time as a floating point number expressed in seconds since the epoch, in UTC. Note that even though the time is always returned as a floating point number, not all systems provide time with a better precision than 1 second. While this function normally returns non-decreasing values, it

Re: adding new functionality to a function non-intrusively!

2005-02-16 Thread mjs7231
Whenever I want to add functionality to a function while still allowing it to word as it was before my edit would be to include a few optional variables passed to the string. something to this effect would look like: -- BEFORE: -

Getting milliseconds in Python

2005-02-16 Thread mjs7231
I am trying to record how long an operation takes, but can't seem to find a function that will allow me to record the timestamp in milliseconds, maybe I am looking in the wrong place? -- http://mail.python.org/mailman/listinfo/python-list