aboutsummaryrefslogtreecommitdiff
path: root/src/fmt
AgeCommit message (Expand)Author
2016-03-09fmt: refactor pointer formatting and improve testsMartin Möhrmann
2016-03-06fmt: refactor and unify float and complex formattingMartin Möhrmann
2016-03-05fmt: use fewer allocations for %q string formattingMartin Möhrmann
2016-03-05fmt: optimize byte slice and array formatting for %v and %dMartin Möhrmann
2016-03-05fmt: float formatting should not permanently change widthMartin Möhrmann
2016-03-03fmt: optimize %x and %X formatting for byte slices and stringsMartin Möhrmann
2016-03-02fmt: optimize string truncationMartin Möhrmann
2016-03-02all: single space after period.Brad Fitzpatrick
2016-03-01all: make copyright headers consistent with one space after periodBrad Fitzpatrick
2016-03-01fmt: make identification of string arguments consistentMartin Möhrmann
2016-02-29all: remove public named return values when uselessBrad Fitzpatrick
2016-02-29fmt: fix formatting of numbers with f.space and f.plus specifiedMartin Möhrmann
2016-02-27fmt: simplify buffer write methods and adjust calls to themMartin Möhrmann
2016-02-27fmt: change padding functions to avoid package initMartin Möhrmann
2016-02-26fmt: use public io.RuneScanner interface for ScanState readerMartin Möhrmann
2016-02-21fmt: fix zero padding for NaNMartin Möhrmann
2016-02-19fmt: remove math package dependency and avoid float operationsMartin Möhrmann
2016-02-19all: replace strings.Index with strings.Contains where possibleNathan VanBenschoten
2015-12-11Revert "fmt: check newline in the end of input"Russ Cox
2015-11-26internal/race: add packageDmitry Vyukov
2015-11-23fmt: check newline in the end of inputNodir Turakulov
2015-11-20fmt: give correct error for % at end of string when scanningRob Pike
2015-10-20fmt: Add support for capital '%X' format verb for scanningThorben Krueger
2015-10-19fmt: clarify reflect.Value printingNodir Turakulov
2015-09-10fmt: allow any type in a format's width argumentRob Pike
2015-08-31fmt: fix scientific notation in docsShenghou Ma
2015-08-24fmt: in Scanf, %c can scan a space, so don't skip spaces at %cRob Pike
2015-08-10fmt: don't unread eof scanning %xRob Pike
2015-06-29fmt: restore padding for %x on byte slices and stringsRob Pike
2015-06-25fmt: handle negative width/prec when supplied as an argumentTodd Neal
2015-06-13fmt: scanning widths apply after leading spacesRob Pike
2015-06-12fmt: require newlines to match when scanning with a formatRob Pike
2015-06-02fmt: fix buffer underflow for negative integersHåvard Haugen
2015-05-11fmt: allow for space and plus flags when computing widthsRob Pike
2015-05-11fmt: skip malloc test under race detectorJosh Bleecher Snyder
2015-05-07fmt: fix panic with large precisionRob Pike
2015-05-05fmt: prevent panic from %.[]Fabrizio (Misto) Milo
2015-05-05fmt: document that Scanf returns an error the same as ScanRob Pike
2015-05-05fmt: change the overflow test for large numbers in verbsRob Pike
2015-05-04fmt: catch overflow in width and prec calculationsRob Pike
2015-04-17fmt: adjust formatting of invalid reflect.Value, add more testsRuss Cox
2015-04-16Revert "fmt: add a few more reflect.Value tests"Brad Fitzpatrick
2015-04-16fmt: add a few more reflect.Value testsRuss Cox
2015-04-15fmt: treat reflect.Value specially - as the value it holdsRob Pike
2015-04-13fmt: empty byte slices should print nothing in hexRob Pike
2015-04-01fmt: improve test coverage of %x and %X format variations for stringsMartin Möhrmann
2015-03-01fmt: document existing behavior of nil receiversRob Pike
2015-01-28cmd/gc: allocate buffers for non-escaped strings on stackDmitry Vyukov
2015-01-19fmt: reword the document for [n].Shenghou Ma
2015-01-04fmt: fix two typosShenghou Ma