summaryrefslogtreecommitdiff
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c1
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