1. e192d0b Issue #7267: format(int, 'c') now raises OverflowError when the argument is not by Victor Stinner · 10 years ago
  2. 9a55cd8 Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods. by Eric V. Smith · 11 years ago
  3. 7603881 Issue #18137: Detect integer overflow on precision in float.__format__() by Victor Stinner · 12 years ago
  4. 75d3600 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 13 years ago
  5. aad57bd Merged revisions 83400 via svnmerge from by Mark Dickinson · 15 years ago
  6. 7dbe3e3 remove extra byte and fix comment by Benjamin Peterson · 15 years ago
  7. c4afe29 locale grouping strings should end in '\0' by Benjamin Peterson · 15 years ago
  8. 87bcb24 Issue #6902: Fix problem with built-in types format incorrectly with 0 padding. by Eric Smith · 15 years ago
  9. f32d4ac Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types. by Eric Smith · 15 years ago
  10. c4ab833 Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson. by Eric Smith · 15 years ago
  11. 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 15 years ago
  12. 5c4a5d2 Issue 6330: Fix --enable-unicode=ucs4. by Eric Smith · 16 years ago
  13. e94a826 Sync trunk and py3k versions of string formatting. Will manually merge into py3k. by Eric Smith · 16 years ago
  14. a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
  15. 27f204d Keep py3k and trunk code in sync. by Eric Smith · 16 years ago
  16. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
  17. ebafbb7 Fixed issue 5782: formatting with commas didn't work if no specifier type code was given. by Eric Smith · 16 years ago
  18. aca19e6 Backport of some of the work in r71665 to trunk. This reworks much of by Eric Smith · 16 years ago
  19. 8c02324 Fixed incorrect object passed into format_float_internal(). This was resulting in a conversion being done twice. by Eric Smith · 16 years ago
  20. 2e648ec Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 test by Mark Dickinson · 16 years ago
  21. e9fb686 Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, unicode, long, int, and float arguments. by Eric Smith · 16 years ago
  22. 18aa388 Fix: by Neal Norwitz · 17 years ago
  23. d6c393a Backed out r65069, pending fixing it in Windows. by Eric Smith · 17 years ago
  24. 454816d Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. by Eric Smith · 17 years ago
  25. 4cb965c Renamed a parameter in calc_number_widths, for consistency with the same parameter in fill_non_digits. by Eric Smith · 17 years ago
  26. a5fa5a2 Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.format(). by Eric Smith · 17 years ago
  27. d0c8412 Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for bin, oct, hex. There's still one failing case, and I need to finish the docs. I hope to finish those today. by Eric Smith · 17 years ago
  28. 5dce7e9 Fixed formatting with thousands separator and padding. Resolves issue 3140. by Eric Smith · 17 years ago
  29. 9ea1e36 Typo in comment. by Eric Smith · 17 years ago
  30. 65fe47b Modified interface to _Py_[String|Unicode]InsertThousandsGrouping, in anticipation of fixing issue 3140. by Eric Smith · 17 years ago
  31. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 17 years ago
  32. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  33. cf537ff Addresses issue 2802: 'n' formatting for integers. by Eric Smith · 17 years ago
  34. d918e4e Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. by Martin v. Löwis · 17 years ago
  35. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 17 years ago
  36. 8a803dd Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it. by Eric Smith · 17 years ago
  37. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago