summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2012-02-08 03:09:37 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2012-02-08 03:09:37 (GMT)
commit1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae (patch)
tree2f52f3ed2ba3f7d4ce5fc1af4b779915f657e01c /Modules
parenta2f7c0063852dd67585709cc1edacb4bafbd5ba8 (diff)
downloadcpython-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.c1
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