aboutsummaryrefslogtreecommitdiff
path: root/src/fmt/fmt_test.go
AgeCommit message (Expand)Author
2020-08-17fmt: avoid badverb formatting for %q when used with integersMartin Möhrmann
2020-02-26fmt: do not remove trailing zeros for %g and %G with #(sharp) flagyah01
2020-02-26all: avoid string(i) where i has type intIan Lance Taylor
2019-02-26fmt: format 0b, 0o prefixes in %#b and %ORuss Cox
2019-02-26fmt: format hex floats and complexesRuss Cox
2018-12-13fmt: include failing method name in panic messageIan Lance Taylor
2018-11-14fmt: avoid allocation when formatting byte slice arguments with verb sMartin Möhrmann
2018-10-16Revert "fmt: fix incorrect format of whole-number floats when using %#v"Filippo Valsorda
2018-10-03io: export StringWriterDaniel Martí
2018-08-28fmt: fix incorrect format of whole-number floats when using %#vDave Brophy
2018-08-22fmt: print values for map keys with non-reflexive equalityMartin Möhrmann
2017-10-31fmt: hide bad format in test from vetRuss Cox
2017-09-20fmt: Implement pp.WriteString methodRajath Agasthya
2017-08-14fmt: add ascii fast path for decoding verbsMartin Möhrmann
2017-02-19fmt: support sharp flag for float and complex value printingMartin Möhrmann
2016-12-11fmt: undo clearflags in catchPanic after error message has been printedMartin Möhrmann
2016-10-18fmt: always handle special methods if print operand is a reflect.ValueMartin Möhrmann
2016-10-04fmt: add tests for parsenumOleg Vakheta
2016-04-17fmt: fix padding when precision is set for integer formattingMartin Möhrmann
2016-04-15fmt: optimize struct layout and intbuf sizeMartin Möhrmann
2016-03-30fmt: fix padding for 0 precision 0 integer value formattingMartin Möhrmann
2016-03-27fmt: unify array and slice formatting for bytes and other typesMartin Möhrmann
2016-03-27fmt: cleanup reflect value handlingMartin Möhrmann
2016-03-20fmt: unify integer formattingMartin Möhrmann
2016-03-19fmt: integer formatting should not permanently change paddingMartin Möhrmann
2016-03-17fmt: separate unicode and integer formattingMartin Möhrmann
2016-03-16fmt: reuse buffer and add range checks for %c and %qMartin Möhrmann
2016-03-16fmt: cleanup %p and %T code pathsMartin Möhrmann
2016-03-16fmt: clear flags before printing extra argument errorsMartin Möhrmann
2016-03-15fmt: handle %X like %x for byte type arrays and slicesMartin Möhrmann
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-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-21fmt: fix zero padding for NaNMartin Möhrmann
2016-02-19fmt: remove math package dependency and avoid float operationsMartin Möhrmann
2015-11-26internal/race: add packageDmitry Vyukov
2015-09-10fmt: allow any type in a format's width argumentRob 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-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