diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-08 04:09:37 +0100 | 
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-08 04:09:37 +0100 | 
| commit | 1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae (patch) | |
| tree | 2f52f3ed2ba3f7d4ce5fc1af4b779915f657e01c /Modules/posixmodule.c | |
| parent | a2f7c0063852dd67585709cc1edacb4bafbd5ba8 (diff) | |
| download | cpython-git-1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae.tar.gz | |
Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp
with a subsecond resolution
Diffstat (limited to 'Modules/posixmodule.c')
| -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 14ef71045c..8b2b2117cb 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  | 
