1. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  2. 2601549 When splitting, avoid making a copy of the string if the split doesn't find by Skip Montanaro · 18 years ago
  3. 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 18 years ago
  4. 9b847b4 Add missing "return NULL" in overflow check in PyObject_Repr(). by Guido van Rossum · 18 years ago
  5. 1c1ac38 Backport fixes for the code that decodes octal escapes (and for PyString by Guido van Rossum · 18 years ago
  6. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 18 years ago
  7. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 18 years ago
  8. 9efd9b6 Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 18 years ago
  9. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  10. 7c3b50d Patch #1673759: add a missing overflow check when formatting floats with %G. by Georg Brandl · 18 years ago
  11. 5c9a81a Fix a bug when there was a newline in the string expandtabs was called on. by Neal Norwitz · 18 years ago
  12. 7dbd2a3 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 18 years ago
  13. 4db5fe9 SF 1193128: Let str.translate(None) be an identity transformation by Raymond Hettinger · 18 years ago
  14. 10a4b0e Backport from Py3k branch: fix refleak in PyString_Format. by Georg Brandl · 18 years ago
  15. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  16. 7218c2d Whitespace only changes by Neal Norwitz · 18 years ago
  17. 1c1a1c5 Add more details when releasing interned strings by Neal Norwitz · 18 years ago
  18. 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 19 years ago
  19. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 19 years ago
  20. a0c95fa Fix endcase for str.rpartition() by Raymond Hettinger · 19 years ago
  21. 26a07b5 Fix refleak introduced in rev. 51248. by Georg Brandl · 19 years ago
  22. 56423e5 Fix segfault when doing string formatting on subclasses of long if by Neal Norwitz · 19 years ago
  23. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 19 years ago
  24. a7edb11 Whitespace normalization by Neal Norwitz · 19 years ago
  25. f71ec5a Bug #1515471: string.replace() accepts character buffers again. by Neal Norwitz · 19 years ago
  26. 8e6675a Update doc to make it agree with code. Bottom factor out some common code. by Neal Norwitz · 19 years ago
  27. 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 19 years ago
  28. 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 19 years ago
  29. b16e4e7 Remove ; at end of macro. There was a compiler recently that warned by Neal Norwitz · 19 years ago
  30. 80f8e80 needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), by Fredrik Lundh · 19 years ago
  31. 0b7ef46 needforspeed: stringlib refactoring: use find_slice for stringobject by Fredrik Lundh · 19 years ago
  32. c2d29c5 needforspeed: replace improvements, changed to Py_LOCAL_INLINE where appropriate by Fredrik Lundh · 19 years ago
  33. d49d5c4 cleanup - removed trailing whitespace by Andrew Dalke · 19 years ago
  34. 2d23d5b needforspeed: more stringlib refactoring by Fredrik Lundh · 19 years ago
  35. 7e0a62e Added description of why splitlines doesn't use the prealloc strategy by Andrew Dalke · 19 years ago
  36. 5132407 Added limits to the replace code so it does not count all of the matching by Andrew Dalke · 19 years ago
  37. e6e43c8 needforspeed: stringlib refactoring: use stringlib/find for string find by Fredrik Lundh · 19 years ago
  38. 58b5e84 needforspeed: stringlib refactoring, continued. added count and by Fredrik Lundh · 19 years ago
  39. c5da53b substring split now uses /F's fast string matching algorithm. by Andrew Dalke · 19 years ago
  40. b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 19 years ago
  41. 3a65d87 needforspeed: remove remaining USE_FAST macros; if fastsearch was by Fredrik Lundh · 19 years ago
  42. c2032fb needforspeed: cleanup by Fredrik Lundh · 19 years ago
  43. b947948 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 19 years ago
  44. a50d201 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 19 years ago
  45. 7c940d1 needforspeed: use Py_LOCAL on a few more locals in stringobject.c by Fredrik Lundh · 19 years ago
  46. 02758d6 Eeked out another 3% or so performance in split whitespace by cleaning up the algorithm. by Andrew Dalke · 19 years ago
  47. 525eab3 Changes to string.split/rsplit on whitespace to preallocate space in the by Andrew Dalke · 19 years ago
  48. 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 19 years ago
  49. f2c0dfd needforspeed: use Py_ssize_t for the fastsearch counter and skip by Fredrik Lundh · 19 years ago
  50. 450277f needforspeed: use METH_O for argument handling, which made partition some by Fredrik Lundh · 19 years ago
  51. 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 19 years ago
  52. fe5bb7e needforspeed: partition for 8-bit strings. for some simple tests, by Fredrik Lundh · 19 years ago
  53. 955b64c squelch gcc4 darwin/x86 compiler warnings by Bob Ippolito · 19 years ago
  54. 554da41 needforspeed: use insert+reverse instead of append by Fredrik Lundh · 19 years ago
  55. 60cbb3f * eliminate warning by reverting tmp_s type to 'const char*' by Jack Diederich · 19 years ago
  56. c3434b3 needforspeed: use fastsearch also for find/index and contains. the by Fredrik Lundh · 19 years ago
  57. 598710c Added overflow test for adding two (very) large strings where the by Andrew Dalke · 19 years ago
  58. f344c94 Comment typo by Andrew M. Kuchling · 19 years ago
  59. af72237 needforspeed: use "fastsearch" for count. this results in a 3x speedup by Fredrik Lundh · 19 years ago
  60. 8c90910 Fixed problem identified by Georg. The special-case in-place code for replace by Andrew Dalke · 19 years ago
  61. e68955c needforspeed: new replace implementation by Andrew Dalke. replace is by Fredrik Lundh · 19 years ago
  62. 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 19 years ago
  63. dfe503d needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C by Fredrik Lundh · 19 years ago
  64. 4b4e33e needforspeed: make new upper/lower work properly for single-character by Fredrik Lundh · 19 years ago
  65. 39ccef6 needforspeed: speed up upper and lower for 8-bit string objects. by Fredrik Lundh · 19 years ago
  66. 763b50f docstring tweaks: count counts non-overlapping substrings, not by Fredrik Lundh · 19 years ago
  67. 8931ff1 Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV by Tim Peters · 19 years ago
  68. 822f34a Revert 43315: Printing of %zd must be signed. by Martin v. Löwis · 19 years ago
  69. 568f1d0 Py_ssize_t issue; repr()'ing a very large string would result in a teensy by Thomas Wouters · 19 years ago
  70. dc5f808 Make s.replace() work with explicit counts exceeding 2Gb. by Thomas Wouters · 19 years ago
  71. 4abb366 Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center and by Thomas Wouters · 19 years ago
  72. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
  73. 0e2cbab No need to cast a Py_ssize_t, use %z in PyErr_Format by Neal Norwitz · 19 years ago
  74. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 19 years ago
  75. 83687c9 Change more occurrences of maxsplit to Py_ssize_t. by Martin v. Löwis · 19 years ago
  76. 9c83076 Change maxsplit types to Py_ssize_t. by Martin v. Löwis · 19 years ago
  77. 8ce358f Replace most INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 19 years ago
  78. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 19 years ago
  79. 7e957d3 Remove dead code (reported by HP compiler). by Neal Norwitz · 19 years ago
  80. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  81. 7fbd691 Get rid of warnings on some platforms by using %u for a size_t. by Neal Norwitz · 19 years ago
  82. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 19 years ago
  83. ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 19 years ago
  84. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  85. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
  86. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  87. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  88. 977485d Use Py_ssize_t in helper function between Py_ssize_t-using functions. by Thomas Wouters · 19 years ago
  89. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
  90. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
  91. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  92. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  93. b2308bb Fix bug: by Michael W. Hudson · 20 years ago
  94. 95c1e50 SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Will backport by Neal Norwitz · 20 years ago
  95. d45014b Fix PyString_Format so that the "%s" format works again when Unicode is not by Georg Brandl · 20 years ago
  96. ab61923 Fix bug in last checkin (2.231). To match previous behavior, unicode by Neil Schemenauer · 20 years ago
  97. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 20 years ago
  98. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 20 years ago
  99. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 20 years ago
  100. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 20 years ago