1. e6a6f39 Backport r58892. Add missing "return NULL" in overflow check in PyString_Repr(). by Guido van Rossum · 17 years ago
  2. 1dcb9c9 Backport r58709 from trunk: by Georg Brandl · 17 years ago
  3. b4d100c Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 17 years ago
  4. c5db923 Patch #1673759: add a missing overflow check when formatting floats by Georg Brandl · 17 years ago
  5. 8355dd5 Backport 55874: by Neal Norwitz · 17 years ago
  6. 66e64e2 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 17 years ago
  7. 5f79586 Backport from Py3k branch: fix refleak in PyString_Format. by Georg Brandl · 17 years ago
  8. 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  9. 29a5fdb Fix str.rpartition(sep) when sep is not found in str. by Neal Norwitz · 18 years ago
  10. 26a07b5 Fix refleak introduced in rev. 51248. by Georg Brandl · 18 years ago
  11. 56423e5 Fix segfault when doing string formatting on subclasses of long if by Neal Norwitz · 18 years ago
  12. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  13. a7edb11 Whitespace normalization by Neal Norwitz · 18 years ago
  14. f71ec5a Bug #1515471: string.replace() accepts character buffers again. by Neal Norwitz · 18 years ago
  15. 8e6675a Update doc to make it agree with code. Bottom factor out some common code. by Neal Norwitz · 18 years ago
  16. 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 18 years ago
  17. 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 18 years ago
  18. b16e4e7 Remove ; at end of macro. There was a compiler recently that warned by Neal Norwitz · 18 years ago
  19. 80f8e80 needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), by Fredrik Lundh · 18 years ago
  20. 0b7ef46 needforspeed: stringlib refactoring: use find_slice for stringobject by Fredrik Lundh · 18 years ago
  21. c2d29c5 needforspeed: replace improvements, changed to Py_LOCAL_INLINE where appropriate by Fredrik Lundh · 18 years ago
  22. d49d5c4 cleanup - removed trailing whitespace by Andrew Dalke · 18 years ago
  23. 2d23d5b needforspeed: more stringlib refactoring by Fredrik Lundh · 18 years ago
  24. 7e0a62e Added description of why splitlines doesn't use the prealloc strategy by Andrew Dalke · 18 years ago
  25. 5132407 Added limits to the replace code so it does not count all of the matching by Andrew Dalke · 18 years ago
  26. e6e43c8 needforspeed: stringlib refactoring: use stringlib/find for string find by Fredrik Lundh · 18 years ago
  27. 58b5e84 needforspeed: stringlib refactoring, continued. added count and by Fredrik Lundh · 18 years ago
  28. c5da53b substring split now uses /F's fast string matching algorithm. by Andrew Dalke · 18 years ago
  29. b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 18 years ago
  30. 3a65d87 needforspeed: remove remaining USE_FAST macros; if fastsearch was by Fredrik Lundh · 18 years ago
  31. c2032fb needforspeed: cleanup by Fredrik Lundh · 18 years ago
  32. b947948 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 18 years ago
  33. a50d201 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 18 years ago
  34. 7c940d1 needforspeed: use Py_LOCAL on a few more locals in stringobject.c by Fredrik Lundh · 18 years ago
  35. 02758d6 Eeked out another 3% or so performance in split whitespace by cleaning up the algorithm. by Andrew Dalke · 18 years ago
  36. 525eab3 Changes to string.split/rsplit on whitespace to preallocate space in the by Andrew Dalke · 18 years ago
  37. 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 18 years ago
  38. f2c0dfd needforspeed: use Py_ssize_t for the fastsearch counter and skip by Fredrik Lundh · 18 years ago
  39. 450277f needforspeed: use METH_O for argument handling, which made partition some by Fredrik Lundh · 18 years ago
  40. 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 18 years ago
  41. fe5bb7e needforspeed: partition for 8-bit strings. for some simple tests, by Fredrik Lundh · 18 years ago
  42. 955b64c squelch gcc4 darwin/x86 compiler warnings by Bob Ippolito · 18 years ago
  43. 554da41 needforspeed: use insert+reverse instead of append by Fredrik Lundh · 18 years ago
  44. 60cbb3f * eliminate warning by reverting tmp_s type to 'const char*' by Jack Diederich · 18 years ago
  45. c3434b3 needforspeed: use fastsearch also for find/index and contains. the by Fredrik Lundh · 18 years ago
  46. 598710c Added overflow test for adding two (very) large strings where the by Andrew Dalke · 18 years ago
  47. f344c94 Comment typo by Andrew M. Kuchling · 18 years ago
  48. af72237 needforspeed: use "fastsearch" for count. this results in a 3x speedup by Fredrik Lundh · 18 years ago
  49. 8c90910 Fixed problem identified by Georg. The special-case in-place code for replace by Andrew Dalke · 18 years ago
  50. e68955c needforspeed: new replace implementation by Andrew Dalke. replace is by Fredrik Lundh · 18 years ago
  51. 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 18 years ago
  52. dfe503d needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C by Fredrik Lundh · 18 years ago
  53. 4b4e33e needforspeed: make new upper/lower work properly for single-character by Fredrik Lundh · 18 years ago
  54. 39ccef6 needforspeed: speed up upper and lower for 8-bit string objects. by Fredrik Lundh · 18 years ago
  55. 763b50f docstring tweaks: count counts non-overlapping substrings, not by Fredrik Lundh · 18 years ago
  56. 8931ff1 Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV by Tim Peters · 18 years ago
  57. 822f34a Revert 43315: Printing of %zd must be signed. by Martin v. Löwis · 18 years ago
  58. 568f1d0 Py_ssize_t issue; repr()'ing a very large string would result in a teensy by Thomas Wouters · 18 years ago
  59. dc5f808 Make s.replace() work with explicit counts exceeding 2Gb. by Thomas Wouters · 18 years ago
  60. 4abb366 Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center and by Thomas Wouters · 18 years ago
  61. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 18 years ago
  62. 0e2cbab No need to cast a Py_ssize_t, use %z in PyErr_Format by Neal Norwitz · 18 years ago
  63. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  64. 83687c9 Change more occurrences of maxsplit to Py_ssize_t. by Martin v. Löwis · 18 years ago
  65. 9c83076 Change maxsplit types to Py_ssize_t. by Martin v. Löwis · 18 years ago
  66. 8ce358f Replace most INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  67. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  68. 7e957d3 Remove dead code (reported by HP compiler). by Neal Norwitz · 18 years ago
  69. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  70. 7fbd691 Get rid of warnings on some platforms by using %u for a size_t. by Neal Norwitz · 18 years ago
  71. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 18 years ago
  72. ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 18 years ago
  73. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  74. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  75. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  76. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  77. 977485d Use Py_ssize_t in helper function between Py_ssize_t-using functions. by Thomas Wouters · 18 years ago
  78. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  79. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 18 years ago
  80. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  81. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  82. b2308bb Fix bug: by Michael W. Hudson · 19 years ago
  83. 95c1e50 SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Will backport by Neal Norwitz · 19 years ago
  84. d45014b Fix PyString_Format so that the "%s" format works again when Unicode is not by Georg Brandl · 19 years ago
  85. ab61923 Fix bug in last checkin (2.231). To match previous behavior, unicode by Neil Schemenauer · 19 years ago
  86. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  87. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  88. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 19 years ago
  89. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 19 years ago
  90. faa7648 More bug #1077106 stuff, sorry -- modem induced impatiece! by Michael W. Hudson · 19 years ago
  91. 561fbf1 SF bug #1054139: serious string hashing error in 2.4b1 by Raymond Hettinger · 20 years ago
  92. 674f241 SF Patch #1007087: Return new string for single subclass joins (Bug #1001011) by Raymond Hettinger · 20 years ago
  93. 618fbf5 This was quite a dark bug in my recent in-place string concatenation by Armin Rigo · 20 years ago
  94. 79f7ad2 Fixed some compiler warnings. by Armin Rigo · 20 years ago
  95. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 20 years ago
  96. 1dffb12 .encode()/.decode() patch part 2. by Marc-André Lemburg · 20 years ago
  97. d2d4598 Allow string and unicode return types from .encode()/.decode() by Marc-André Lemburg · 20 years ago
  98. e7c0532 sizeof(char) is 1, by definition, so get rid of that expression in by Tim Peters · 20 years ago
  99. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  100. 75c00ef [SF #866875] Add a specialized routine for one character by Hye-Shik Chang · 21 years ago