Lines Matching refs:strptime
1 """PyUnit testing against strptime"""
89 # issue since strptime still parses it correctly. The problem is
206 """Tests for _strptime.strptime."""
239 # 4. ISO year is specified alone (e.g. time.strptime('2015', '%G'))
447 "strptime does not handle ALL-CAPS names properly")
449 "strptime does not handle lowercase names properly")
451 "strptime does not handle capword names properly")
458 "Default values for strptime() are incorrect;"
471 time.strptime("Feb 29", "%b %d")
475 time.strptime("Feb 29", "%b %d"),
476 time.strptime("Mar 1", "%b %d"))
483 eq(time.strptime('12 PM', '%I %p')[3], 12)
484 eq(time.strptime('12 AM', '%I %p')[3], 0)
499 """Test that strptime() fills in missing info correctly"""