1. 18809fa Remove unused defines. by Serhiy Storchaka · 11 years ago
  2. d7b7c74 Issue #14993: Use standard "unsigned char" instead of a unsigned char bitfield by Victor Stinner · 12 years ago
  3. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  4. 3b1a74a Rename unicode_write_t structure and its methods to "_PyUnicodeWriter" by Victor Stinner · 12 years ago
  5. ee4544c Issue #14744: Inline unicode_writer_write_char() and unicode_write_str() by Victor Stinner · 12 years ago
  6. 202fdca Close #14716: str.format() now uses the new "unicode writer" API instead of the by Victor Stinner · 12 years ago
  7. d0acb41 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  8. b37b174 Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) by Victor Stinner · 13 years ago
  9. 7931d9a Replace PyUnicodeObject type by PyObject by Victor Stinner · 13 years ago
  10. 4574e62 Fix massive slowdown in string formatting with str.format. by Antoine Pitrou · 13 years ago
  11. dbf697a Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  12. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago[Renamed (81%) from Objects/stringlib/string_format.h]
  13. c7d93b7 Issue #1621: Fix undefined behaviour from signed overflow in datetime module hashes, array and list iterations, and get_integer (stringlib/string_format.h) by Mark Dickinson · 13 years ago
  14. 12ebefc Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. by Eric V. Smith · 13 years ago
  15. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  16. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  17. a1eac72 Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash. by Eric Smith · 14 years ago
  18. a277ec4 Followup to r86170: fix reference leak in str.format by Antoine Pitrou · 14 years ago
  19. 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
  20. 66c221e #9418: first step of moving private string methods to _string module. by Georg Brandl · 14 years ago
  21. 99bcf5c Merged revisions 81823,81835 via svnmerge from by Benjamin Peterson · 14 years ago
  22. 59a1b2f Merged revisions 81820 via svnmerge from by Benjamin Peterson · 14 years ago
  23. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  24. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  25. 41669ca Merged revisions 72848 via svnmerge from by Eric Smith · 15 years ago
  26. fb526ac Merged revisions 72159 via svnmerge from by Georg Brandl · 15 years ago
  27. 8ec9044 Merged revisions 70364 via svnmerge from by Eric Smith · 15 years ago
  28. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  29. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  30. 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
  31. 1d138f1 Optimization of str.format() for cases with unicode, long, and float by Eric Smith · 16 years ago
  32. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  33. 5a6f458 Merged revisions 62199 via svnmerge from by Martin v. Löwis · 16 years ago
  34. ecbac8f Corrected assert to check for correct type in py3k. by Eric Smith · 16 years ago
  35. 8a0217c Port 60893 to py3k, without unicode test. by Eric Smith · 16 years ago
  36. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  37. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  38. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  39. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  40. 45c0787 Simplified recursion logic. Modified variable name to match string.Formatter. by Eric Smith · 17 years ago
  41. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  42. 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
  43. 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 17 years ago
  44. 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 17 years ago
  45. 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 17 years ago
  46. 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
  47. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
  48. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  49. 247b515 This adds a leak, but fixes a crash. The leaking code is: by Neal Norwitz · 17 years ago
  50. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  51. 3ef6a57 Get rid of compiler warning on 64-bit by Neal Norwitz · 17 years ago
  52. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago