aboutsummaryrefslogtreecommitdiff
path: root/src/fmt/print.go
AgeCommit message (Expand)Author
2020-10-13fmt: explain how Formatter interface affects verbs and flagsBryan Boreham
2020-08-17fmt: avoid badverb formatting for %q when used with integersMartin Möhrmann
2019-05-23fmt: always clear wrapErrsMartin Möhrmann
2019-05-15fmt: support %wDamien Neil
2019-05-15errors, fmt: revert rejected changes for Go 1.13Damien Neil
2019-05-09fmt: rename buffer.WriteByte to writeByteRuss Cox
2019-02-27fmt: add frame info to Errorf and support %wMarcel van Lohuizen
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-18fmt: print maps in key-sorted orderRob Pike
2018-09-19fmt: fix usage of sync.PoolJoe Tsai
2018-08-22fmt: print values for map keys with non-reflexive equalityMartin Möhrmann
2018-02-27fmt: change some unexported method names to camel caseDarshan Parajuli
2017-09-20fmt: Implement pp.WriteString methodRajath Agasthya
2017-08-26all: remove some double spaces from commentsDaniel Martí
2017-08-14fmt: add ascii fast path for decoding verbsMartin Möhrmann
2017-02-19fmt: remove unused global variable byteTypeMartin Möhrmann
2016-12-11fmt: undo clearflags in catchPanic after error message has been printedMartin Möhrmann
2016-12-07fmt: remove unnecessary else statementOdin Ugedal
2016-10-18fmt: always handle special methods if print operand is a reflect.ValueMartin Möhrmann
2016-04-15fmt: optimize struct layout and intbuf sizeMartin Möhrmann
2016-04-03fmt: hold on to all free buffers, regardless of sizeBrad Fitzpatrick
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-26fmt: split doPrint into two specialized functionsMartin Möhrmann
2016-03-23fmt: cleanup and optimize doPrintf for simple formatsMartin Möhrmann
2016-03-20fmt: unify integer formattingMartin Möhrmann
2016-03-19fmt: remove depth argument from handleMethods and printArgMartin Möhrmann
2016-03-18fmt: simplify handling of reporting flags to formattersMartin Möhrmann
2016-03-18fmt: remove unused field from printer structMartin 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-16fmt: replace variables for type bit sizes with constantsMartin 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: optimize byte slice and array formatting for %v and %dMartin Möhrmann
2016-03-01fmt: make identification of string arguments consistentMartin Möhrmann
2016-02-29all: remove public named return values when uselessBrad Fitzpatrick
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
2015-09-10fmt: allow any type in a format's width argumentRob Pike
2015-06-25fmt: handle negative width/prec when supplied as an argumentTodd Neal
2015-05-05fmt: prevent panic from %.[]Fabrizio (Misto) Milo
2015-05-05fmt: change the overflow test for large numbers in verbsRob Pike
2015-05-04fmt: catch overflow in width and prec calculationsRob Pike