[Python-checkins] r82328 - python/branches/py3k/Modules/datetimemodule.c

alexander.belopolsky python-checkins at python.org
Mon Jun 28 16:36:55 CEST 2010


Author: alexander.belopolsky
Date: Mon Jun 28 16:36:55 2010
New Revision: 82328

Log:
Added missing white space

Modified:
   python/branches/py3k/Modules/datetimemodule.c

Modified: python/branches/py3k/Modules/datetimemodule.c
==============================================================================
--- python/branches/py3k/Modules/datetimemodule.c	(original)
+++ python/branches/py3k/Modules/datetimemodule.c	Mon Jun 28 16:36:55 2010
@@ -4386,7 +4386,7 @@
 
     if (module == NULL) {
         module = PyImport_ImportModuleNoBlock("_strptime");
-        if(module == NULL)
+        if (module == NULL)
             return NULL;
     }
     return PyObject_CallMethod(module, "_strptime_datetime", "Ouu",


More information about the Python-checkins mailing list