1. ad13f33 Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 9 years ago
  2. 12d547a Issue #23921: Standardized documentation whitespace formatting. by Serhiy Storchaka · 9 years ago
  3. 127f0d8 Issue #15660: Further clarify 0 prefix for width specifier in formats. by Terry Jan Reedy · 9 years ago
  4. 00f19ef Issue #25179: Preparatory cleanup of existing docs on string formatting by Martin Panter · 10 years ago
  5. e3c6136 #19238: fix typo in documentation. by Ezio Melotti · 12 years ago
  6. cef2d49 #19238, #19289: fix description of the align and fill values of the format specification. by Ezio Melotti · 12 years ago
  7. 12ec99d Issue #17728: Specify default precision for float.format for presentation types e, f, and g. by Eric V. Smith · 12 years ago
  8. d5bdb1f #17265: fix highlight in template example. Initial patch by Berker Peksag. by Ezio Melotti · 12 years ago
  9. 57dfb22 #16154: fix some doctests in Doc/library. Patch by Ravi Sinha. by Ezio Melotti · 13 years ago
  10. eff174b #16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns. by Ezio Melotti · 13 years ago
  11. 0c68c5d Update docs for string.zfill by Andrew Svetlov · 13 years ago
  12. 9ac2023 Update documentation for string.replace. Thanks to docs@ by Andrew Svetlov · 13 years ago
  13. d928b6a #13579: minimize code base drift for 'a' string.Formatter change. by R David Murray · 13 years ago
  14. 73b19d0 Issue 15660: Clarify 0 prefix for width field in str.format doc. by Terry Jan Reedy · 13 years ago
  15. 334be84 correctly define what 'fill' could be; thanks to Leland Hulbert from docs@ by Sandro Tosi · 13 years ago
  16. 95f42a8 #14763: fix documentation for string.split/rsplit. by Ezio Melotti · 13 years ago
  17. 510ff54 Use Python 3 instead of 3.0. by Ezio Melotti · 13 years ago
  18. 4fbad84 remove spurious dot from string formatting example; thanks to Anthon van der Neut from docs@ by Sandro Tosi · 14 years ago
  19. 1e87da1 Remove duplication. by Ezio Melotti · 14 years ago
  20. cd90f79 Document that format string don’t support arbitrary dictonary keys. by Éric Araujo · 14 years ago
  21. 29a0b57 Backport source links from 3.x. by Éric Araujo · 14 years ago
  22. e11af59 Fix grammar by Eli Bendersky · 14 years ago
  23. 2804602 Merged revisions 87627,87638,87760,87986,88108,88115,88165,88263,88329,88364-88365,88423-88424 via svnmerge from by Georg Brandl · 14 years ago
  24. 3b85b9b Merged revisions 85843,85849-85850,85867,85907,85914,86134,86187,86315-86316,86390,86424-86425,86428 via svnmerge from by Georg Brandl · 15 years ago
  25. e0e0822 Add more links to Python sources where the code is short, readable and an informative adjunct to the docs. by Raymond Hettinger · 15 years ago
  26. 1e1a8c7 Merged revisions 85395 via svnmerge from by Benjamin Peterson · 15 years ago
  27. 21946af Merged revisions 82798,82805,83659,83977,84015,84018,84141,84264,84326-84327,84480,84482,84484,84530-84531,84553,84619,84915-84916 via svnmerge from by Georg Brandl · 15 years ago
  28. f5e81d6 #9139: the thousands separator is new in 2.7. Also add a missing variable in the example. by Ezio Melotti · 15 years ago
  29. e11690a #9139: Add examples for str.format(). by Ezio Melotti · 15 years ago
  30. 68f5941 Moved period outside paren, where it belongs. by Eric Smith · 15 years ago
  31. 817d918 Use designated syntax for optional grammar element. by Georg Brandl · 15 years ago
  32. 271b7e1 Issue #7928: Document str.format element_index better. by Eric Smith · 15 years ago
  33. de8b2ac Issue #5965: Add documentation for parts of format specification language. by Eric Smith · 15 years ago
  34. cef3409 Remove incorrect apostrophe. by Eric Smith · 15 years ago
  35. 8b10f13 #7527: use standard versionadded tags. by Georg Brandl · 16 years ago
  36. 1136ff5 Fix markup. by Georg Brandl · 16 years ago
  37. d5a713e Issue #7051: Clarify behaviour of 'g' and 'G'-style formatting. by Mark Dickinson · 16 years ago
  38. fa6a427 Backport r73983: Document the thousands separator. by Andrew M. Kuchling · 16 years ago
  39. 9aac245 #7000: document "sep" in capwords. Add a few tests by Ezio Melotti · 16 years ago
  40. 254c17c #6813: better documentation for numberless string formats. by Georg Brandl · 16 years ago
  41. d7d4fd7 builtin -> built-in. by Georg Brandl · 16 years ago
  42. 2cc39ad #6238: add fillchar to string.just function family. by Georg Brandl · 16 years ago
  43. 7523234 Fixed wording for formatting integers: precision is not allowed. by Eric Smith · 16 years ago
  44. 16a57f6 Demote warnings to notices where appropriate, following the goal that as few "red box" warnings by Georg Brandl · 16 years ago
  45. 4c07438 Documentation for issue 5237, auto-numbered format fields. Contributed by Terry J. Reedy. by Eric Smith · 16 years ago
  46. 0e92858 give os.symlink and os.link() better parameter names #5564 by Benjamin Peterson · 16 years ago
  47. 8cbe955 Add token markup. by Georg Brandl · 16 years ago
  48. d5ad6da Remove obsolete stuff from string module docs. by Georg Brandl · 16 years ago
  49. c62ef8b Remove trailing whitespace. by Georg Brandl · 17 years ago
  50. b535d32 fix typo by Benjamin Peterson · 17 years ago
  51. bf89981 Document the different meaning of precision for {:f} and {:g}. by Georg Brandl · 17 years ago
  52. d6c393a Backed out r65069, pending fixing it in Windows. by Eric Smith · 17 years ago
  53. 454816d Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. by Eric Smith · 17 years ago
  54. a5fa5a2 Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.format(). by Eric Smith · 17 years ago
  55. 90f3673 fix various doc typos #3320 by Benjamin Peterson · 17 years ago
  56. c15205e rename the section about new formatting 'new-string-formatting' by Benjamin Peterson · 17 years ago
  57. e321c2f #2836: backport new string formatting docs. by Georg Brandl · 17 years ago
  58. c7b0592 reformat some documentation of classes so methods and attributes are under the class directive by Benjamin Peterson · 17 years ago
  59. e8f1b00 Enable doctest running for several other documents. by Georg Brandl · 17 years ago
  60. 8ec7f65 Move the 2.6 reST doc tree in place. by Georg Brandl · 18 years ago