- 16 Şub, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
aways from zero, instead of rounding towards zero. It should make test_asyncio more reliable, especially test_timeout_rounding() test.
-
- 12 Haz, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
Fix also its value on Windows and Linux according to its documentation: "adjustable" indicates if the clock *can be* adjusted, not if it is or was adjusted. In most cases, it is not possible to indicate if a clock is or was adjusted.
-
- 03 May, 2012 1 kayıt (commit)
-
-
Larry Hastings yazdı
Removed futimens as it is now redundant. Changed shutil.copystat to use st_atime_ns and st_mtime_ns from os.stat and ns= parameter to utime--it once again preserves exact metadata on Linux!
-
- 01 May, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 29 Nis, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Rename time.steady() to time.monotonic() * On Windows, time.monotonic() uses GetTickCount/GetTickCount64() instead of QueryPerformanceCounter() * time.monotonic() uses CLOCK_HIGHRES if available * Add time.get_clock_info(), time.perf_counter() and time.process_time() functions
-
- 19 Nis, 2012 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 13 Mar, 2012 3 kayıt (commit)
-
-
Victor Stinner yazdı
Use volatile keyword to disable localy unsafe float optimizations.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
time.ctime(), gmtime(), time.localtime(), datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now raises an OverflowError, instead of a ValueError, if the timestamp does not fit in time_t. datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now round microseconds towards zero instead of rounding to nearest with ties going away from zero.
-
- 02 Mar, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
Add a private API to convert an int or float to a C timespec structure.
-
- 08 Şub, 2012 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 07 Şub, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
to have a resolution of 100 ns instead of 1 ms (the clock accuracy is between 0.5 ms and 15 ms).
-
- 05 Agu, 2010 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
exposed in Python.h. This function is similar to POSIX gettimeofday(struct timeval *tp), but available on platforms without gettimeofday().
-