1. 8f4f1f6 fmt: hide bad format in test from vet by Russ Cox · 7 years ago
  2. 8802b18 fmt: Implement pp.WriteString method by Rajath Agasthya · 8 years ago
  3. 629b5e7 fmt: add ascii fast path for decoding verbs by Martin Möhrmann · 8 years ago
  4. e97f407 fmt: support sharp flag for float and complex value printing by Martin Möhrmann · 8 years ago
  5. cbcc1db fmt: undo clearflags in catchPanic after error message has been printed by Martin Möhrmann · 8 years ago
  6. 2ecaaf1 fmt: always handle special methods if print operand is a reflect.Value by Martin Möhrmann · 8 years ago
  7. 4caf93c fmt: add tests for parsenum by Oleg Vakheta · 9 years ago
  8. a85a224 fmt: fix padding when precision is set for integer formatting by Martin Möhrmann · 9 years ago
  9. 7345fa5 fmt: optimize struct layout and intbuf size by Martin Möhrmann · 9 years ago
  10. aec8e14 fmt: fix padding for 0 precision 0 integer value formatting by Martin Möhrmann · 9 years ago
  11. 9149aa1 fmt: unify array and slice formatting for bytes and other types by Martin Möhrmann · 9 years ago
  12. d170d3e fmt: cleanup reflect value handling by Martin Möhrmann · 9 years ago
  13. 8d9ece9 fmt: unify integer formatting by Martin Möhrmann · 9 years ago
  14. d246eed fmt: integer formatting should not permanently change padding by Martin Möhrmann · 9 years ago
  15. d38275c fmt: separate unicode and integer formatting by Martin Möhrmann · 9 years ago
  16. 42cd69f fmt: reuse buffer and add range checks for %c and %q by Martin Möhrmann · 9 years ago
  17. b8ddcc0 fmt: cleanup %p and %T code paths by Martin Möhrmann · 9 years ago
  18. cf08ead fmt: clear flags before printing extra argument errors by Martin Möhrmann · 9 years ago
  19. c45c515 fmt: handle %X like %x for byte type arrays and slices by Martin Möhrmann · 9 years ago
  20. 8e23156 fmt: refactor pointer formatting and improve tests by Martin Möhrmann · 9 years ago
  21. bd6d842 fmt: refactor and unify float and complex formatting by Martin Möhrmann · 9 years ago
  22. 5763476 fmt: use fewer allocations for %q string formatting by Martin Möhrmann · 9 years ago
  23. 00da3a6 fmt: optimize byte slice and array formatting for %v and %d by Martin Möhrmann · 9 years ago
  24. 7837418 fmt: float formatting should not permanently change width by Martin Möhrmann · 9 years ago
  25. 033e3e1 fmt: optimize %x and %X formatting for byte slices and strings by Martin Möhrmann · 9 years ago
  26. 83765d1 fmt: optimize string truncation by Martin Möhrmann · 9 years ago
  27. 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago
  28. 75cc05f fmt: fix formatting of numbers with f.space and f.plus specified by Martin Möhrmann · 9 years ago
  29. 7da4ced fmt: simplify buffer write methods and adjust calls to them by Martin Möhrmann · 9 years ago
  30. abcad1e fmt: change padding functions to avoid package init by Martin Möhrmann · 9 years ago
  31. 5dc053b fmt: fix zero padding for NaN by Martin Möhrmann · 9 years ago
  32. 5a9c128 fmt: remove math package dependency and avoid float operations by Martin Möhrmann · 9 years ago
  33. 7b767f4 internal/race: add package by Dmitry Vyukov · 10 years ago
  34. a00cec9 fmt: allow any type in a format's width argument by Rob Pike · 10 years ago
  35. a76c1a5 fmt: restore padding for %x on byte slices and strings by Rob Pike · 10 years ago
  36. 4e834cf fmt: handle negative width/prec when supplied as an argument by Todd Neal · 10 years ago
  37. 70cf735 fmt: fix buffer underflow for negative integers by Håvard Haugen · 10 years ago
  38. e3a9a08 fmt: allow for space and plus flags when computing widths by Rob Pike · 10 years ago
  39. e92a724 fmt: skip malloc test under race detector by Josh Bleecher Snyder · 10 years ago
  40. c6688b7 fmt: fix panic with large precision by Rob Pike · 10 years ago
  41. 325642e fmt: prevent panic from %.[] by Fabrizio (Misto) Milo · 10 years ago
  42. 92715d7 fmt: change the overflow test for large numbers in verbs by Rob Pike · 10 years ago
  43. 660a682 fmt: catch overflow in width and prec calculations by Rob Pike · 10 years ago
  44. a2ef54b fmt: adjust formatting of invalid reflect.Value, add more tests by Russ Cox · 10 years ago
  45. db1f9cd Revert "fmt: add a few more reflect.Value tests" by Brad Fitzpatrick · 10 years ago
  46. 3e6b7f3 fmt: add a few more reflect.Value tests by Russ Cox · 10 years ago
  47. 049b89d fmt: treat reflect.Value specially - as the value it holds by Rob Pike · 10 years ago
  48. 5705832 fmt: empty byte slices should print nothing in hex by Rob Pike · 10 years ago
  49. 15e66f9 fmt: improve test coverage of %x and %X format variations for strings by Martin Möhrmann · 10 years ago
  50. e6fac08 cmd/gc: allocate buffers for non-escaped strings on stack by Dmitry Vyukov · 10 years ago
  51. f3c85c5 fmt: fix bug in scanning of hex strings by Rob Pike · 10 years ago
  52. a0c5adc fmt: print &map like &slice and &struct by Rob Pike · 10 years ago
  53. a224245 fmt: part 2 of the great flag rebuild: make %+v work in formatters by Rob Pike · 10 years ago
  54. 7c8e057 fmt: make the %#v verb a special flag by Rob Pike · 10 years ago
  55. 54111a5 fmt: document and fix the handling of precision for strings and byte slices by Rob Pike · 10 years ago
  56. 78b5321 fmt: make printing of ints 25-35% faster by Rob Pike · 11 years ago
  57. 73a82db fmt: fix allocation tests by Josh Bleecher Snyder · 11 years ago
  58. eafa4ff fmt: fix allocation test by Rob Pike · 11 years ago
  59. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/fmt/fmt_test.go]
  60. 326f48e fmt: print byte stringers correctly by Andrew Gerrand · 11 years ago
  61. bfdeb57 fmt: measure width in runes not bytes with %c and %q for ints by Mihai Borobocea · 11 years ago
  62. 7dcbf4f fmt: include ±Inf and NaN in the complex format test by Rob Pike · 11 years ago
  63. b559392 fmt: fix signs when zero padding. by Rob Pike · 11 years ago
  64. 311e286 fmt: don't put 0x on every byte of a compact hex-encoded string by Rob Pike · 11 years ago
  65. 4464ae2 fmt: fix floating-point padding once and for all by Rob Pike · 11 years ago
  66. c274ff6 fmt: fix go syntax formatting of []byte(nil) Fixes #7639. by Shenghou Ma · 11 years ago
  67. b00d967 fmt: make %F a synonym for %f by Rob Pike · 11 years ago
  68. 44cc8e5 fmt: use RunParallel in benchmarks by Dmitriy Vyukov · 11 years ago
  69. fc908a0 fmt: fix bug printing large zero-padded hexadecimal by Rob Pike · 11 years ago
  70. 7f62d08 fmt: make benchmarks parallel by Dmitriy Vyukov · 11 years ago
  71. 5ad5b7a fmt: Fix signed zero-padding for positive floats by Felix Geisendörfer · 11 years ago
  72. 3e3ed5d fmt: one bad index shouldn't spoil them all by Rob Pike · 12 years ago
  73. 89dacb9 fmt: %b for complex64 and complex128 by Rob Pike · 12 years ago
  74. f578726 all: protect alloc count tests by -testing.short by Rob Pike · 12 years ago
  75. f59064d fmt: fix up zero padding by Rob Pike · 12 years ago
  76. fba7b04 fmt: clean up some errors found by vet Includes deleting some unused items. by Rob Pike · 12 years ago
  77. 53b6105 fmt: make all errors begin with the string "%!", always. by Robert Daniel Kortschak · 12 years ago
  78. 02ad82f fmt: put a ! in all error output generated by Printf-like functions Fixes #5730. by Rob Pike · 12 years ago
  79. d84132c fmt: change evalutation of indexed arg to match docs by Rob Pike · 12 years ago
  80. 7472ce0 fmt.Printf: introduce notation for random access to arguments. by Rob Pike · 12 years ago
  81. b42c829 fmt: fix crash for Printf("%.", 3) Fixes #5311 by Rob Pike · 12 years ago
  82. 0a71a5b all: Skip AllocsPerRun tests if GOMAXPROCS>1. by Albert Strasheim · 12 years ago
  83. cbd2c7a fmt: fix width for nil values by Robert Dinu · 12 years ago
  84. 9bfd3c3 testing: add AllocsPerRun by Kyle Lemons · 12 years ago
  85. 92bc896 fmt: improve go syntax handling of byte-derived arrays and slices by Robert Daniel Kortschak · 12 years ago
  86. 3692dfd fmt: Remove dead code and make comments and variables consistent. by Robin Eklind · 12 years ago
  87. 07cc0586 fmt: fix %v of complex slice by Russ Cox · 12 years ago
  88. 9e30b70 all: set GOMAXPROCS to 1 when counting mallocs by Shenghou Ma · 12 years ago
  89. ffea835 fmt: allow # and x together for strings by Rob Pike · 12 years ago
  90. 3ba0f6d fmt: honor integer radix formats (%d etc.) for pointers by Rob Pike · 13 years ago
  91. a308be5 fmt: set p.field before nil check Fixes #3752. by Rob Pike · 13 years ago
  92. ee3c272 fmt: fix inadvertent change to %#v by Russ Cox · 13 years ago
  93. 53bc194 fmt: speed up 10-20% by Rob Pike · 13 years ago
  94. a662d3d fmt: fix crash of %b on huge negative int64 by Rob Pike · 13 years ago
  95. 663a771 crypto/tls, fmt: print fixes by Robert Hencke · 13 years ago
  96. 0bc1881 fmt, log: stop using unicode by Russ Cox · 13 years ago
  97. 00134fe fmt: diagnose invalid verb applied to pointer by Russ Cox · 13 years ago
  98. 842c906 runtime: delete UpdateMemStats, replace with ReadMemStats(&stats). by Rémy Oudompheng · 13 years ago
  99. e451fb8 fmt: add test of NaN map keys by Russ Cox · 13 years ago
  100. b7ec659 fmt: fix Malloc test by Rob Pike · 13 years ago