aboutsummaryrefslogtreecommitdiff
path: root/src/fmt
AgeCommit message (Expand)Author
2018-04-17fmt: document that Scan etc. accept 'p' format floatsAlberto Donizetti
2018-03-30fmt: document the behaviour of %p on slicesmewmew
2018-02-27fmt: change some unexported method names to camel caseDarshan Parajuli
2017-10-31fmt: hide bad format in test from vetRuss Cox
2017-10-15fmt: clarify wording of * flagRob Pike
2017-09-20fmt: Implement pp.WriteString methodRajath Agasthya
2017-08-28fmt: document verbs %b %d %o %x %X for printing pointersRob Pike
2017-08-26all: remove some double spaces from commentsDaniel Martí
2017-08-16fmt: add Stringer exampleBlain Smith
2017-08-14fmt: add ascii fast path for decoding verbsMartin Möhrmann
2017-08-11fmt: remove stopAtNewline unused parameterDaniel Martí
2017-06-07fmt: remove unnecessary trailing commas in doc.goRob Phoenix
2017-02-21fmt: add short note about %g precisionAlberto Donizetti
2017-02-19fmt: remove unused global variable byteTypeMartin 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-12-07fmt: remove unnecessary else statementOdin Ugedal
2016-11-17fmt: fix typoBrad Fitzpatrick
2016-10-26fmt: document that unexported struct fields don't get the String/Error treatmentRuss Cox
2016-10-18fmt: always handle special methods if print operand is a reflect.ValueMartin Möhrmann
2016-10-18fmt: fix documention for %#v on uintsRob Pike
2016-10-07fmt: document and adjust Scanf space handling to eliminate a few paradoxesRuss Cox
2016-10-07fmt: add tests showing current Scanf space handlingRuss Cox
2016-10-04fmt: add tests for parsenumOleg Vakheta
2016-09-09doc: avoid mentioning non-existence of u flag to fmt.Printf.Jim Kingdon
2016-07-16fmt: properly handle early io.EOF Reads in readRune.readByteJoe Tsai
2016-05-12fmt: remove extra space in too few arguments exampleMohit Agarwal
2016-04-17fmt: remove extra space in doc for compound objectsEmmanuel Odeke
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-04-14fmt: clarify that for %g precision determines number of significant digitsRob Pike
2016-04-03fmt: hold on to all free buffers, regardless of sizeBrad Fitzpatrick
2016-03-30fmt: fix padding for 0 precision 0 integer value formattingMartin Möhrmann
2016-03-30fmt: improve handling of zero paddingMartin 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-26fmt: split doPrint into two specialized functionsMartin Möhrmann
2016-03-23fmt: cleanup and optimize doPrintf for simple formatsMartin Möhrmann
2016-03-21all: delete dead test codeDominik Honnef
2016-03-20fmt: unify integer formattingMartin Möhrmann
2016-03-19fmt: integer formatting should not permanently change paddingMartin 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