summaryrefslogtreecommitdiff
path: root/src/fmt/print.go
Commit message (Expand)AuthorAgeFilesLines
* all: use reflect.{Pointer,PointerTo}Cuong Manh Le2021-10-261-3/+3
* fmt: explain how Formatter interface affects verbs and flagsBryan Boreham2020-10-131-4/+4
* fmt: avoid badverb formatting for %q when used with integersMartin Möhrmann2020-08-171-5/+1
* fmt: always clear wrapErrsMartin Möhrmann2019-05-231-1/+2
* fmt: support %wDamien Neil2019-05-151-7/+20
* errors, fmt: revert rejected changes for Go 1.13Damien Neil2019-05-151-14/+21
* fmt: rename buffer.WriteByte to writeByteRuss Cox2019-05-091-91/+91
* fmt: add frame info to Errorf and support %wMarcel van Lohuizen2019-02-271-21/+14
* fmt: format 0b, 0o prefixes in %#b and %ORuss Cox2019-02-261-9/+9
* fmt: format hex floats and complexesRuss Cox2019-02-261-2/+2
* fmt: include failing method name in panic messageIan Lance Taylor2018-12-131-5/+7
* fmt: avoid allocation when formatting byte slice arguments with verb sMartin Möhrmann2018-11-141-1/+1
* fmt: print maps in key-sorted orderRob Pike2018-10-181-4/+5
* fmt: fix usage of sync.PoolJoe Tsai2018-09-191-0/+10
* fmt: print values for map keys with non-reflexive equalityMartin Möhrmann2018-08-221-4/+4
* fmt: change some unexported method names to camel caseDarshan Parajuli2018-02-271-28/+28
* fmt: Implement pp.WriteString methodRajath Agasthya2017-09-201-0/+7
* all: remove some double spaces from commentsDaniel Martí2017-08-261-1/+1
* fmt: add ascii fast path for decoding verbsMartin Möhrmann2017-08-141-2/+5
* fmt: remove unused global variable byteTypeMartin Möhrmann2017-02-191-2/+0
* fmt: undo clearflags in catchPanic after error message has been printedMartin Möhrmann2016-12-111-1/+7
* fmt: remove unnecessary else statementOdin Ugedal2016-12-071-8/+7
* fmt: always handle special methods if print operand is a reflect.ValueMartin Möhrmann2016-10-181-0/+8
* fmt: optimize struct layout and intbuf sizeMartin Möhrmann2016-04-151-6/+13
* fmt: hold on to all free buffers, regardless of sizeBrad Fitzpatrick2016-04-031-4/+0
* fmt: unify array and slice formatting for bytes and other typesMartin Möhrmann2016-03-271-38/+35
* fmt: cleanup reflect value handlingMartin Möhrmann2016-03-271-62/+37
* fmt: split doPrint into two specialized functionsMartin Möhrmann2016-03-261-11/+18
* fmt: cleanup and optimize doPrintf for simple formatsMartin Möhrmann2016-03-231-41/+58
* fmt: unify integer formattingMartin Möhrmann2016-03-201-58/+32
* fmt: remove depth argument from handleMethods and printArgMartin Möhrmann2016-03-191-13/+13
* fmt: simplify handling of reporting flags to formattersMartin Möhrmann2016-03-181-31/+2
* fmt: remove unused field from printer structMartin Möhrmann2016-03-181-1/+0
* fmt: separate unicode and integer formattingMartin Möhrmann2016-03-171-24/+2
* fmt: reuse buffer and add range checks for %c and %qMartin Möhrmann2016-03-161-15/+4
* fmt: cleanup %p and %T code pathsMartin Möhrmann2016-03-161-15/+5
* fmt: clear flags before printing extra argument errorsMartin Möhrmann2016-03-161-10/+11
* fmt: replace variables for type bit sizes with constantsMartin Möhrmann2016-03-161-5/+0
* fmt: handle %X like %x for byte type arrays and slicesMartin Möhrmann2016-03-151-4/+6
* fmt: refactor pointer formatting and improve testsMartin Möhrmann2016-03-091-28/+23
* fmt: refactor and unify float and complex formattingMartin Möhrmann2016-03-061-63/+37
* fmt: optimize byte slice and array formatting for %v and %dMartin Möhrmann2016-03-051-31/+19
* fmt: make identification of string arguments consistentMartin Möhrmann2016-03-011-35/+33
* all: remove public named return values when uselessBrad Fitzpatrick2016-02-291-1/+1
* fmt: simplify buffer write methods and adjust calls to themMartin Möhrmann2016-02-271-76/+67
* fmt: change padding functions to avoid package initMartin Möhrmann2016-02-271-0/+6
* fmt: allow any type in a format's width argumentRob Pike2015-09-101-2/+21
* fmt: handle negative width/prec when supplied as an argumentTodd Neal2015-06-251-3/+25
* fmt: prevent panic from %.[]Fabrizio (Misto) Milo2015-05-051-2/+7
* fmt: change the overflow test for large numbers in verbsRob Pike2015-05-051-2/+4