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

Issue 5434095: code review 5434095: strconv: new API (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 5 months ago by rsc
Modified:
12 years, 5 months ago
Reviewers:
CC:
golang-dev, bradfitz, gri, r, agl1
Visibility:
Public.

Description

strconv: new API

Patch Set 1 #

Patch Set 2 : diff -r 73b9e4cb1afe https://go.googlecode.com/hg/ #

Patch Set 3 : diff -r 73b9e4cb1afe https://go.googlecode.com/hg/ #

Total comments: 3

Patch Set 4 : diff -r 73b9e4cb1afe https://go.googlecode.com/hg/ #

Patch Set 5 : diff -r 73b9e4cb1afe https://go.googlecode.com/hg/ #

Total comments: 1

Patch Set 6 : diff -r 23c65e5ae3ed https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+224 lines, -273 lines) Patch
M src/pkg/strconv/atob.go View 1 2 chunks +13 lines, -4 lines 0 comments Download
M src/pkg/strconv/atob_test.go View 1 1 chunk +2 lines, -2 lines 0 comments Download
M src/pkg/strconv/atof.go View 1 2 3 4 5 3 chunks +23 lines, -27 lines 0 comments Download
M src/pkg/strconv/atof_test.go View 1 2 chunks +15 lines, -25 lines 0 comments Download
M src/pkg/strconv/atoi.go View 1 2 3 4 7 chunks +38 lines, -66 lines 0 comments Download
M src/pkg/strconv/atoi_test.go View 1 7 chunks +20 lines, -20 lines 0 comments Download
M src/pkg/strconv/fp_test.go View 1 3 chunks +4 lines, -3 lines 0 comments Download
M src/pkg/strconv/ftoa.go View 1 2 chunks +12 lines, -17 lines 0 comments Download
M src/pkg/strconv/ftoa_test.go View 1 2 3 4 1 chunk +14 lines, -14 lines 0 comments Download
M src/pkg/strconv/itoa.go View 1 2 chunks +22 lines, -22 lines 0 comments Download
M src/pkg/strconv/itoa_test.go View 1 2 3 4 3 chunks +25 lines, -73 lines 0 comments Download
M src/pkg/strconv/quote.go View 1 4 chunks +24 lines, -0 lines 0 comments Download
M src/pkg/strconv/quote_test.go View 1 2 3 4 4 chunks +12 lines, -0 lines 0 comments Download

Messages

Total messages: 16
rsc
Hello golang-dev (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
12 years, 5 months ago (2011-12-01 22:43:31 UTC) #1
rsc
I sent these out mainly for feedback on the API. I am not proposing to ...
12 years, 5 months ago (2011-12-01 22:44:46 UTC) #2
bradfitz
Much nicer. On Thu, Dec 1, 2011 at 2:44 PM, Russ Cox <rsc@golang.org> wrote: > ...
12 years, 5 months ago (2011-12-01 22:57:06 UTC) #3
bradfitz
http://codereview.appspot.com/5434095/diff/1002/src/pkg/strconv/ftoa.go File src/pkg/strconv/ftoa.go (right): http://codereview.appspot.com/5434095/diff/1002/src/pkg/strconv/ftoa.go#newcode45 src/pkg/strconv/ftoa.go:45: // Ftoa32(f) is not the same as Ftoa64(float32(f)), stale ...
12 years, 5 months ago (2011-12-01 23:05:31 UTC) #4
gri
LGTM http://codereview.appspot.com/5434095/diff/1002/src/pkg/strconv/atof.go File src/pkg/strconv/atof.go (right): http://codereview.appspot.com/5434095/diff/1002/src/pkg/strconv/atof.go#newcode407 src/pkg/strconv/atof.go:407: f1, err1 := atof64(s) just return atof64(s)
12 years, 5 months ago (2011-12-01 23:11:20 UTC) #5
r
LGTM much happier
12 years, 5 months ago (2011-12-02 00:17:13 UTC) #6
bradfitz
On Thu, Dec 1, 2011 at 2:44 PM, Russ Cox <rsc@golang.org> wrote: > I sent ...
12 years, 5 months ago (2011-12-05 17:33:08 UTC) #7
rsc
On Mon, Dec 5, 2011 at 12:33, Brad Fitzpatrick <bradfitz@golang.org> wrote: > I'll redo the ...
12 years, 5 months ago (2011-12-05 18:46:02 UTC) #8
agl1
http://codereview.appspot.com/5434095/diff/1002/src/pkg/strconv/atoi.go File src/pkg/strconv/atoi.go (right): http://codereview.appspot.com/5434095/diff/1002/src/pkg/strconv/atoi.go#newcode134 src/pkg/strconv/atoi.go:134: // to s cannot be represented by an unsigned ...
12 years, 5 months ago (2011-12-05 18:51:50 UTC) #9
bradfitz
On Mon, Dec 5, 2011 at 10:46 AM, Russ Cox <rsc@golang.org> wrote: > On Mon, ...
12 years, 5 months ago (2011-12-05 18:57:39 UTC) #10
rsc
Hello golang-dev@googlegroups.com, bradfitz@golang.org, gri@golang.org, r@golang.org, agl@golang.org (cc: golang-dev@googlegroups.com), Please take another look.
12 years, 5 months ago (2011-12-05 20:05:21 UTC) #11
rsc
PTAL Added tests and fixed comment bug pointed out by agl.
12 years, 5 months ago (2011-12-05 20:06:21 UTC) #12
bradfitz
LGTM On Mon, Dec 5, 2011 at 12:06 PM, Russ Cox <rsc@golang.org> wrote: > PTAL ...
12 years, 5 months ago (2011-12-05 20:17:47 UTC) #13
gri
LGTM http://codereview.appspot.com/5434095/diff/1006/src/pkg/strconv/atof.go File src/pkg/strconv/atof.go (right): http://codereview.appspot.com/5434095/diff/1006/src/pkg/strconv/atof.go#newcode407 src/pkg/strconv/atof.go:407: f1, err1 := atof64(s) I guess you decided ...
12 years, 5 months ago (2011-12-05 20:39:28 UTC) #14
rsc
On Mon, Dec 5, 2011 at 15:39, <gri@golang.org> wrote: > I guess you decided against ...
12 years, 5 months ago (2011-12-05 20:43:49 UTC) #15
rsc
12 years, 5 months ago (2011-12-05 20:48:25 UTC) #16
*** Submitted as http://code.google.com/p/go/source/detail?r=497c07d73643 ***

strconv: new API

R=golang-dev, bradfitz, gri, r, agl
CC=golang-dev
http://codereview.appspot.com/5434095
Sign in to reply to this message.

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