1. fb90c09 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 12 years ago
  2. 12ebefc Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. by Eric V. Smith · 13 years ago
  3. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
  4. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  5. a1eac72 Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash. by Eric Smith · 14 years ago
  6. a277ec4 Followup to r86170: fix reference leak in str.format by Antoine Pitrou · 14 years ago
  7. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  8. 66c221e #9418: first step of moving private string methods to _string module. by Georg Brandl · 14 years ago
  9. 99bcf5c Merged revisions 81823,81835 via svnmerge from by Benjamin Peterson · 14 years ago
  10. 59a1b2f Merged revisions 81820 via svnmerge from by Benjamin Peterson · 14 years ago
  11. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  12. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  13. 41669ca Merged revisions 72848 via svnmerge from by Eric Smith · 15 years ago
  14. fb526ac Merged revisions 72159 via svnmerge from by Georg Brandl · 15 years ago
  15. 8ec9044 Merged revisions 70364 via svnmerge from by Eric Smith · 16 years ago
  16. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  17. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  18. ba8c028 Refactored known type optimization, in anticipation of backporting to 2.6. I'll probably move this code into PyObject_Format, so everyone benefits. by Eric Smith · 16 years ago
  19. 1d138f1 Optimization of str.format() for cases with unicode, long, and float by Eric Smith · 16 years ago
  20. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  21. 5a6f458 Merged revisions 62199 via svnmerge from by Martin v. Löwis · 16 years ago
  22. ecbac8f Corrected assert to check for correct type in py3k. by Eric Smith · 17 years ago
  23. 8a0217c Port 60893 to py3k, without unicode test. by Eric Smith · 17 years ago
  24. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 17 years ago
  25. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  26. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  27. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  28. 45c0787 Simplified recursion logic. Modified variable name to match string.Formatter. by Eric Smith · 17 years ago
  29. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  30. 4cb4e4e Fix segfault discovered by Ron Adam. Not checking for terminating right bracket in "'{0[}'.format(())". Fixed, and tests added. by Eric Smith · 17 years ago
  31. 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 17 years ago
  32. 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 17 years ago
  33. 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 17 years ago
  34. f6db409 Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, so that they can be used when backporting to 2.6. by Eric Smith · 17 years ago
  35. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
  36. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  37. 247b515 This adds a leak, but fixes a crash. The leaking code is: by Neal Norwitz · 17 years ago
  38. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  39. 3ef6a57 Get rid of compiler warning on 64-bit by Neal Norwitz · 17 years ago
  40. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago