[Python-checkins] r88825 - sandbox/trunk/welease/welease.py

martin.v.loewis python-checkins at python.org
Sun Apr 17 23:25:52 CEST 2011


Author: martin.v.loewis
Date: Sun Apr 17 23:25:52 2011
New Revision: 88825

Log:
Work around 2.6.6 bug.


Modified:
   sandbox/trunk/welease/welease.py

Modified: sandbox/trunk/welease/welease.py
==============================================================================
--- sandbox/trunk/welease/welease.py	(original)
+++ sandbox/trunk/welease/welease.py	Sun Apr 17 23:25:52 2011
@@ -660,4 +660,6 @@
 # End config
 
 if __name__ == "__main__":
+    # issue 7980
+    time.strptime('','')
     main()


More information about the Python-checkins mailing list