summaryrefslogtreecommitdiff
path: root/src/pkg/strconv/decimal.go
AgeCommit message (Collapse)AuthorFilesLines
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg1-1/+1
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-32/+39
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+371
2011-09-13Imported Upstream version 60Ondřej Surý1-371/+0
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-1/+1
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-28/+28
2010-06-29strconv: fix %.1f, 0.09Rob Pike1-5/+8
Fixes issue 822. Credit to http://codereview.appspot.com/1442041 by danielfleischman R=rsc CC=golang-dev http://codereview.appspot.com/1738047
2010-05-03runtime, strconv: tiny cleanupsRuss Cox1-12/+5
R=r CC=golang-dev http://codereview.appspot.com/1081042
2010-02-25go/printer, gofmt: align comments in multi-line expression listsRobert Griesemer1-25/+25
- gofmt -w src misc - improves several lists and fixes minor degradation introduced with the fix for issue 628 - removed some dead code (stringList) R=rsc CC=golang-dev http://codereview.appspot.com/223058
2009-12-151) Change default gofmt default settings forRobert Griesemer1-133/+133
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049
2009-11-18remove bytes.CopyRob Pike1-6/+4
replace all calls with calls to copy use copy in regexp and bytes.Buffer R=rsc CC=golang-dev http://codereview.appspot.com/157073
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-29/+29
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-20/+20
R=rsc, r http://go/go-review/1025029
2009-11-04gofmt-ify strconvRobert Griesemer1-60/+59
(and remove an empty line at the end of a file) R=rsc http://go/go-review/1017046
2009-11-01misc cleanupRuss Cox1-4/+0
R=r http://go/go-review/1016017
2009-08-12convert low-level (used by testing) packages toRuss Cox1-10/+0
whole-package compilation. new Makefiles, tests now in separate package bytes flag fmt io math once os reflect strconv sync time utf8 delete import "xxx" in package xxx. inside package xxx, xxx is not declared anymore so s/xxx.//g delete file and package level forward declarations. note the new internal_test.go and sync and strconv to provide public access to internals during testing. the installed version of the package omits that file and thus does not open the internals to all clients. R=r OCL=33065 CL=33097
2009-06-24style police: parens in if, for, switch, rangeRuss Cox1-1/+1
R=r DELTA=32 (0 added, 3 deleted, 29 changed) OCL=30718 CL=30725
2009-06-09mv src/lib to src/pkgRob Pike1-0/+392
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102