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