• Russ Cox's avatar
    time: accept .999 in Parse · dcc46388
    Russ Cox authored
    The recent shuffle in parsing formats exposed probably unintentional
    behavior in time.Parse, namely that it was mostly ignoring ".99999"
    in the format, producing the following behavior:
    
    fmt.Println(time.Parse("03:04:05.999 MST", "12:00:00.888 PDT")) // error (.888 unexpected)
    fmt.Println(time.Parse("03:04:05.999", "12:00:00")) // error (input too short)
    fmt.Println(time.Parse("03:04:05.999 MST", "12:00:00 PDT"))  // ok (extra bytes on input make it ok)
    
    http://play.golang.org/p/ESJ1UYXzq2
    
    API CHANGE:
    
    This CL makes all three examples valid: ".999" can match an
    empty string or else a fractional second with at most nine digits.
    
    Fixes #3701.
    
    R=r, r
    CC=golang-dev
    https://golang.org/cl/6267045
    dcc46388
Name
Last commit
Last update
..
example_test.go Loading commit data...
format.go Loading commit data...
internal_test.go Loading commit data...
sleep.go Loading commit data...
sleep_test.go Loading commit data...
sys_plan9.go Loading commit data...
sys_unix.go Loading commit data...
sys_windows.go Loading commit data...
tick.go Loading commit data...
tick_test.go Loading commit data...
time.go Loading commit data...
time_test.go Loading commit data...
zoneinfo.go Loading commit data...
zoneinfo_plan9.go Loading commit data...
zoneinfo_read.go Loading commit data...
zoneinfo_unix.go Loading commit data...
zoneinfo_windows.go Loading commit data...