1. 41669ca Merged revisions 72848 via svnmerge from by Eric Smith · 15 years ago
  2. fb526ac Merged revisions 72159 via svnmerge from by Georg Brandl · 15 years ago
  3. 8ec9044 Merged revisions 70364 via svnmerge from by Eric Smith · 15 years ago
  4. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  5. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  6. 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
  7. 1d138f1 Optimization of str.format() for cases with unicode, long, and float by Eric Smith · 16 years ago
  8. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  9. 5a6f458 Merged revisions 62199 via svnmerge from by Martin v. Löwis · 16 years ago
  10. ecbac8f Corrected assert to check for correct type in py3k. by Eric Smith · 16 years ago
  11. 8a0217c Port 60893 to py3k, without unicode test. by Eric Smith · 16 years ago
  12. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  13. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  14. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  15. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  16. 45c0787 Simplified recursion logic. Modified variable name to match string.Formatter. by Eric Smith · 17 years ago
  17. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  18. 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
  19. 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 17 years ago
  20. 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 17 years ago
  21. 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 17 years ago
  22. 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
  23. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
  24. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  25. 247b515 This adds a leak, but fixes a crash. The leaking code is: by Neal Norwitz · 17 years ago
  26. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  27. 3ef6a57 Get rid of compiler warning on 64-bit by Neal Norwitz · 17 years ago
  28. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago