Age | Commit message (Expand) | Author | Files | Lines |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 1 | -22/+35 |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -222/+162 |
2010-06-28 | fmt.Printf: fix bug in handling of %#v. | Rob Pike | 1 | -45/+53 |
2010-06-21 | reflect: add Type.Bits method, add tags to prohibit conversions | Russ Cox | 1 | -4/+4 |
2010-06-20 | reflect: add Kind, remove Int8Type, Int8Value, etc. | Russ Cox | 1 | -32/+9 |
2010-06-14 | fmt.Printf: write tests for %T. | Rob Pike | 1 | -1/+1 |
2010-06-14 | fmt.Print*: reimplement to switch on type first. | Rob Pike | 1 | -496/+379 |
2010-06-03 | fmt.Scan: field widths | Rob Pike | 1 | -8/+11 |
2010-06-02 | fmt.Scan: scan []byte arguments | Rob Pike | 1 | -1/+0 |
2010-06-02 | fmt.Scanf: implement formats, provide Sscanf (strings) | Rob Pike | 1 | -6/+33 |
2010-05-31 | fmt: fix end-of-array error in parsenum. | Rob Pike | 1 | -8/+4 |
2010-05-28 | fmt.Scan: add Fscan and Fscanln and make Scan and Scanln | Rob Pike | 1 | -1/+17 |
2010-05-27 | changes &x -> x[0:] for array to slice conversion | Russ Cox | 1 | -1/+1 |
2010-05-21 | go/printer, gofmt: fix printing of labels, | Robert Griesemer | 1 | -1/+2 |
2010-05-13 | Prevent Printf crashing when giving an extra nil argument. | Roger Peppe | 1 | -2/+4 |
2010-04-28 | fmt: %T print <nil> for nil | Christopher Wedgwood | 1 | -0/+4 |
2010-04-12 | fmt format verb %b bug | Andrei Vieru | 1 | -2/+6 |
2010-03-06 | fix bug in complex printing: imaginary didn't have same format as real. | Rob Pike | 1 | -1/+0 |
2010-03-06 | PTAL | Ken Thompson | 1 | -65/+26 |
2010-03-05 | 6g complex type usable | Ken Thompson | 1 | -0/+120 |
2010-02-28 | Count utf8 runes, not bytes when determining string width. Note | Stephen Ma | 1 | -1/+3 |
2010-02-25 | use []byte("abc") in place of []byte{'a', 'b', 'c'} | Russ Cox | 1 | -9/+9 |
2010-02-25 | %q in fmt: if the object is a Stringer, use String() to get the value to quote. | Rob Pike | 1 | -0/+7 |
2010-02-15 | Fix printing of named floating point types. | Ian Lance Taylor | 1 | -4/+4 |
2010-02-05 | handle nils safely in Printf. | Rob Pike | 1 | -2/+7 |
2010-02-02 | Change type of Printf's args to ... interface{} | Rob Pike | 1 | -96/+205 |
2009-12-23 | fix up %p | Rob Pike | 1 | -4/+7 |
2009-12-22 | Allow %p on reference types, for debugging. | Rob Pike | 1 | -17/+9 |
2009-12-15 | 1) Change default gofmt default settings for | Robert Griesemer | 1 | -205/+205 |
2009-12-06 | save a few ns by inlining (which mostly simplifies things anyway). | Rob Pike | 1 | -5/+13 |
2009-12-06 | unexport Fmt. it's not needed outside this package any more | Rob Pike | 1 | -47/+47 |
2009-12-06 | Make printing faster by avoiding mallocs and some other advances. | Rob Pike | 1 | -163/+167 |
2009-11-20 | gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg | Russ Cox | 1 | -2/+2 |
2009-11-09 | - replaced gofmt expression formatting algorithm with | Robert Griesemer | 1 | -10/+10 |
2009-11-09 | remove semis after statements in one-statement statement lists | Robert Griesemer | 1 | -110/+110 |
2009-11-06 | - fine-tuning of one-line func heuristic (nodes.go) | Robert Griesemer | 1 | -6/+2 |
2009-11-05 | gofmt-ify template, time, unsafe, flag, fmt | Robert Griesemer | 1 | -2/+2 |
2009-10-08 | more lgtm files from gofmt | Russ Cox | 1 | -1/+1 |
2009-10-06 | apply gofmt to datafmt, ebnf, exec, expvar, flag, fmt | Russ Cox | 1 | -70/+70 |
2009-09-15 | more "declared and not used". | Russ Cox | 1 | -2/+2 |
2009-09-10 | fix indentation | Russ Cox | 1 | -146/+146 |
2009-08-31 | fmt: add verbs: | Russ Cox | 1 | -58/+186 |
2009-08-28 | print the value using (in effect) %v when Printf is given mismatched args for... | Rob Pike | 1 | -2/+8 |
2009-08-12 | convert low-level (used by testing) packages to | Russ Cox | 1 | -4/+0 |
2009-08-10 | remove unnecessary pkg. references | Russ Cox | 1 | -1/+1 |
2009-07-31 | make %v and %p consistent | Rob Pike | 1 | -1/+1 |
2009-07-30 | fix a long-standing typo | Rob Pike | 1 | -2/+2 |
2009-07-10 | reflection for interface set | Russ Cox | 1 | -1/+1 |
2009-07-09 | printing maps | Rob Pike | 1 | -1/+13 |
2009-07-07 | fmt: use new reflect interface (CL 31107) | Russ Cox | 1 | -158/+132 |