Lines Matching refs:strptime
1 """PyUnit testing against strptime"""
84 # issue since strptime still parses it correctly. The problem is
200 """Tests for _strptime.strptime."""
358 "strptime does not handle ALL-CAPS names properly")
360 "strptime does not handle lowercase names properly")
362 "strptime does not handle capword names properly")
369 "Default values for strptime() are incorrect;"
382 time.strptime("Feb 29", "%b %d")
386 time.strptime("Feb 29", "%b %d"),
387 time.strptime("Mar 1", "%b %d"))
394 eq(time.strptime('12 PM', '%I %p')[3], 12)
395 eq(time.strptime('12 AM', '%I %p')[3], 0)
410 """Test that strptime() fills in missing info correctly"""