Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1712)

Issue 6267045: code review 6267045: time: accept .999 in Parse (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 10 months ago by rsc
Modified:
12 years, 10 months ago
Reviewers:
jgold.bg
CC:
r, r2, golang-dev
Visibility:
Public.

Description

time: accept .999 in Parse 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 issue 3701.

Patch Set 1 #

Patch Set 2 : diff -r 008b163fb38a https://go.googlecode.com/hg/ #

Total comments: 1

Patch Set 3 : diff -r 85022208a2aa https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+25 lines, -1 line) Patch
M src/pkg/time/format.go View 1 2 1 chunk +15 lines, -1 line 0 comments Download
M src/pkg/time/time_test.go View 1 1 chunk +10 lines, -0 lines 0 comments Download

Messages

Total messages: 7
rsc
Hello r (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
12 years, 10 months ago (2012-06-04 16:34:38 UTC) #1
r
LGTM API change approved
12 years, 10 months ago (2012-06-04 16:36:48 UTC) #2
r2
relevant to issue 3523? -rob
12 years, 10 months ago (2012-06-04 16:37:46 UTC) #3
rsc
PTAL The code is unchanged. The description now reads: This CL makes all three examples ...
12 years, 10 months ago (2012-06-04 16:43:42 UTC) #4
r
LGTM http://codereview.appspot.com/6267045/diff/2001/src/pkg/time/format.go File src/pkg/time/format.go (right): http://codereview.appspot.com/6267045/diff/2001/src/pkg/time/format.go#newcode861 src/pkg/time/format.go:861: if len(value) < 2 || value[0] != '.' ...
12 years, 10 months ago (2012-06-04 16:52:17 UTC) #5
rsc
*** Submitted as http://code.google.com/p/go/source/detail?r=4f82ce08466d *** time: accept .999 in Parse The recent shuffle in parsing ...
12 years, 10 months ago (2012-06-04 17:09:28 UTC) #6
jgold.bg
12 years, 10 months ago (2012-06-04 17:53:20 UTC) #7
FWIW, I just synced and rebuilt and can confirm that this addresses my original
problem from 3523.

jonathan

On Mon, Jun 04, 2012 at 09:37:43AM -0700, Rob 'Commander' Pike wrote:
> relevant to issue 3523?
> 
> -rob
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b