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

Issue 833045: code review 833045: time: do not segment time strings by character class. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
15 years ago by rsc
Modified:
15 years ago
Reviewers:
CC:
r, golang-dev
Visibility:
Public.

Description

time: do not segment time strings by character class. instead use pure substring matching to find template values. this makes stdZulu unnecessary and allows formats like "20060102 030405" (used in some internet protocols). this makes Parse not handle years < 0000 or > 9999 anymore. that seems like an okay price to pay, trading hypothetical functionality for real functionality. also changed the comments on the Time struct to use the same reference date as the format and parse routines.

Patch Set 1 #

Patch Set 2 : code review 833045: time: do not segment time strings by character class. #

Total comments: 2

Patch Set 3 : code review 833045: time: do not segment time strings by character class. #

Total comments: 1

Patch Set 4 : code review 833045: time: do not segment time strings by character class. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+213 lines, -174 lines) Patch
M src/pkg/time/format.go View 1 2 11 chunks +202 lines, -165 lines 0 comments Download
M src/pkg/time/time.go View 1 1 chunk +6 lines, -6 lines 0 comments Download
M src/pkg/time/time_test.go View 3 chunks +5 lines, -3 lines 0 comments Download

Messages

Total messages: 7
rsc
Hello r (cc: golang-dev@googlegroups.com), I'd like you to review this change.
15 years ago (2010-03-30 21:11:59 UTC) #1
r2
s/us/use/ in CL description
15 years ago (2010-03-30 21:21:46 UTC) #2
r
http://codereview.appspot.com/833045/diff/2001/3001 File src/pkg/time/format.go (right): http://codereview.appspot.com/833045/diff/2001/3001#newcode360 src/pkg/time/format.go:360: for len(prefix) > 0 && prefix[0] == ' ' ...
15 years ago (2010-03-30 21:27:14 UTC) #3
rsc
Hello r (cc: golang-dev@googlegroups.com), Please take another look.
15 years ago (2010-03-30 21:35:57 UTC) #4
r
LGTM with grumblings http://codereview.appspot.com/833045/diff/9001/10001 File src/pkg/time/format.go (right): http://codereview.appspot.com/833045/diff/9001/10001#newcode394 src/pkg/time/format.go:394: // Years must be in the ...
15 years ago (2010-03-30 21:45:56 UTC) #5
rsc
fixed CL description
15 years ago (2010-03-30 21:54:13 UTC) #6
rsc
15 years ago (2010-03-30 21:54:35 UTC) #7
*** Submitted as http://code.google.com/p/go/source/detail?r=d625c471c301 ***

time: do not segment time strings by character class.
instead use pure substring matching to find template values.

this makes stdZulu unnecessary and allows formats
like "20060102 030405" (used in some internet protocols).

this makes Parse not handle years < 0000 or > 9999 anymore.
that seems like an okay price to pay, trading hypothetical
functionality for real functionality.

also changed the comments on the Time struct to use the
same reference date as the format and parse routines.

R=r
CC=golang-dev
http://codereview.appspot.com/833045
Sign in to reply to this message.

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