aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/fmt/fmt_test.go
AgeCommit message (Expand)Author
2011-10-18[release-branch.r58] reflect: disallow Interface method on Value obtained via...release.r58.2Andrew Gerrand
2011-06-07strconv: change Quote to be Unicode-friendly,Rob Pike
2011-05-25fmt: make %q work for integers, printing a quoted character literal.Rob Pike
2011-04-12fmt: allow %U for unsigned integers.Rob Pike
2011-03-31fmt: implement precs for %q.Rob Pike
2011-03-26testing: shorten some more testsRob Pike
2011-03-01fmt: delete debugging print that crept in to test.Rob Pike
2011-03-01fmt: make %#p suppress leading 0xRob Pike
2011-01-19delete float, complex - code changesRuss Cox
2011-01-05Made format string handling more efficient.Kyle Consalus
2011-01-05fmt: normalize processing of format stringRob Pike
2010-12-06fmt: add %U format for standard Unicode representation of integer values.Rob Pike
2010-11-29fmt: allow "% X" as well as "% x"Rob Pike
2010-11-01strings: ContainsBrad Fitzpatrick
2010-10-22gofmt -s -w src miscRobert Griesemer
2010-10-04fmt: allow %d on []byteRob Pike
2010-09-24fmt/Printf: document and tweak error messages produced for bad formatsRob Pike
2010-09-23tests: fix printsRob Pike
2010-09-22fmt: support '*' for width or precisionAnthony Martin
2010-08-17fmt/print: remove a TODO regarding printing renamed byte slices.Rob Pike
2010-08-14fmt/print: give %p priority, analogous to %TRob Pike
2010-08-13fmt/print: honor Formatter in Print, Println.Rob Pike
2010-07-29fmt.Print: fix bug in placement of spaces introduced when ...T went in.Rob Pike
2010-06-28fmt.Printf: fix bug in handling of %#v.Rob Pike
2010-06-14fmt.Printf: write tests for %T.Rob Pike
2010-06-14fmt.Print*: reimplement to switch on type first.Rob Pike
2010-05-31fmt: fix end-of-array error in parsenum.Rob Pike
2010-04-28fmt: %T print <nil> for nilChristopher Wedgwood
2010-04-12fmt format verb %b bugAndrei Vieru
2010-03-09fmt: enable the complex tests now that 8g supports complexRob Pike
2010-03-06fix bug in complex printing: imaginary didn't have same format as real.Rob Pike
2010-02-28Count utf8 runes, not bytes when determining string width. NoteStephen Ma
2010-02-25strings: delete Runes, BytesRuss Cox
2010-02-25%q in fmt: if the object is a Stringer, use String() to get the value to quote.Rob Pike
2010-02-05handle nils safely in Printf.Rob Pike
2010-02-03finalizers; merge package malloc into package runtimeRuss Cox
2009-12-22Allow %p on reference types, for debugging.Rob Pike
2009-12-15 1) Change default gofmt default settings forRobert Griesemer
2009-12-06Make printing faster by avoiding mallocs and some other advances.Rob Pike
2009-11-24Add benchmarks for commonly used routines.Trevor Strohman
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox
2009-11-20add unimplemented %+ and % (space) flags to floating-point print.Rob Pike
2009-11-17add a test for %+v in nested structures.Rob Pike
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer
2009-11-05gofmt-ify template, time, unsafe, flag, fmtRobert Griesemer
2009-10-06apply gofmt to datafmt, ebnf, exec, expvar, flag, fmtRuss Cox
2009-09-17unused importsRuss Cox
2009-09-15more "declared and not used".Russ Cox
2009-08-31fmt: add verbs:Russ Cox