add %f format to datetime - issue 1158
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 5b4d210..bd1ad06 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -520,7 +520,7 @@
 
     if (!strptime_module)
         return NULL;
-    strptime_result = PyObject_CallMethod(strptime_module, "strptime", "O", args);
+    strptime_result = PyObject_CallMethod(strptime_module, "_strptime_time", "O", args);
     Py_DECREF(strptime_module);
     return strptime_result;
 }