diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-08 03:09:37 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-08 03:09:37 (GMT) |
commit | 1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae (patch) | |
tree | 2f52f3ed2ba3f7d4ce5fc1af4b779915f657e01c /Modules | |
parent | a2f7c0063852dd67585709cc1edacb4bafbd5ba8 (diff) | |
download | cpython-1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae.zip cpython-1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae.tar.gz cpython-1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae.tar.bz2 |
Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp
with a subsecond resolution
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 14ef710..8b2b211 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3539,7 +3539,6 @@ extract_time(PyObject *t, time_t* sec, long* nsec) mod = fmod(d, 1.0); mod *= 1e9; *nsec = (long)mod; - printf("%g => (%u, %li)\n", d, *sec, *nsec); return 0; } #if SIZEOF_TIME_T > SIZEOF_LONG |