- 8e6675a Update doc to make it agree with code. Bottom factor out some common code. by Neal Norwitz · 19 years ago
- 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 19 years ago
- 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 19 years ago
- b16e4e7 Remove ; at end of macro. There was a compiler recently that warned by Neal Norwitz · 19 years ago
- 80f8e80 needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), by Fredrik Lundh · 19 years ago
- 0b7ef46 needforspeed: stringlib refactoring: use find_slice for stringobject by Fredrik Lundh · 19 years ago
- c2d29c5 needforspeed: replace improvements, changed to Py_LOCAL_INLINE where appropriate by Fredrik Lundh · 19 years ago
- d49d5c4 cleanup - removed trailing whitespace by Andrew Dalke · 19 years ago
- 2d23d5b needforspeed: more stringlib refactoring by Fredrik Lundh · 19 years ago
- 7e0a62e Added description of why splitlines doesn't use the prealloc strategy by Andrew Dalke · 19 years ago
- 5132407 Added limits to the replace code so it does not count all of the matching by Andrew Dalke · 19 years ago
- e6e43c8 needforspeed: stringlib refactoring: use stringlib/find for string find by Fredrik Lundh · 19 years ago
- 58b5e84 needforspeed: stringlib refactoring, continued. added count and by Fredrik Lundh · 19 years ago
- c5da53b substring split now uses /F's fast string matching algorithm. by Andrew Dalke · 19 years ago
- b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 19 years ago
- 3a65d87 needforspeed: remove remaining USE_FAST macros; if fastsearch was by Fredrik Lundh · 19 years ago
- c2032fb needforspeed: cleanup by Fredrik Lundh · 19 years ago
- b947948 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 19 years ago
- a50d201 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 19 years ago
- 7c940d1 needforspeed: use Py_LOCAL on a few more locals in stringobject.c by Fredrik Lundh · 19 years ago
- 02758d6 Eeked out another 3% or so performance in split whitespace by cleaning up the algorithm. by Andrew Dalke · 19 years ago
- 525eab3 Changes to string.split/rsplit on whitespace to preallocate space in the by Andrew Dalke · 19 years ago
- 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 19 years ago
- f2c0dfd needforspeed: use Py_ssize_t for the fastsearch counter and skip by Fredrik Lundh · 19 years ago
- 450277f needforspeed: use METH_O for argument handling, which made partition some by Fredrik Lundh · 19 years ago
- 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 19 years ago
- fe5bb7e needforspeed: partition for 8-bit strings. for some simple tests, by Fredrik Lundh · 19 years ago
- 955b64c squelch gcc4 darwin/x86 compiler warnings by Bob Ippolito · 19 years ago
- 554da41 needforspeed: use insert+reverse instead of append by Fredrik Lundh · 19 years ago
- 60cbb3f * eliminate warning by reverting tmp_s type to 'const char*' by Jack Diederich · 19 years ago
- c3434b3 needforspeed: use fastsearch also for find/index and contains. the by Fredrik Lundh · 19 years ago
- 598710c Added overflow test for adding two (very) large strings where the by Andrew Dalke · 19 years ago
- f344c94 Comment typo by Andrew M. Kuchling · 19 years ago
- af72237 needforspeed: use "fastsearch" for count. this results in a 3x speedup by Fredrik Lundh · 19 years ago
- 8c90910 Fixed problem identified by Georg. The special-case in-place code for replace by Andrew Dalke · 19 years ago
- e68955c needforspeed: new replace implementation by Andrew Dalke. replace is by Fredrik Lundh · 19 years ago
- 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 19 years ago
- dfe503d needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C by Fredrik Lundh · 19 years ago
- 4b4e33e needforspeed: make new upper/lower work properly for single-character by Fredrik Lundh · 19 years ago
- 39ccef6 needforspeed: speed up upper and lower for 8-bit string objects. by Fredrik Lundh · 19 years ago
- 763b50f docstring tweaks: count counts non-overlapping substrings, not by Fredrik Lundh · 19 years ago
- 8931ff1 Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV by Tim Peters · 19 years ago
- 822f34a Revert 43315: Printing of %zd must be signed. by Martin v. Löwis · 19 years ago
- 568f1d0 Py_ssize_t issue; repr()'ing a very large string would result in a teensy by Thomas Wouters · 19 years ago
- dc5f808 Make s.replace() work with explicit counts exceeding 2Gb. by Thomas Wouters · 19 years ago
- 4abb366 Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center and by Thomas Wouters · 19 years ago
- 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
- 0e2cbab No need to cast a Py_ssize_t, use %z in PyErr_Format by Neal Norwitz · 19 years ago
- 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 19 years ago
- 83687c9 Change more occurrences of maxsplit to Py_ssize_t. by Martin v. Löwis · 19 years ago
- 9c83076 Change maxsplit types to Py_ssize_t. by Martin v. Löwis · 19 years ago
- 8ce358f Replace most INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 19 years ago
- a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 19 years ago
- 7e957d3 Remove dead code (reported by HP compiler). by Neal Norwitz · 19 years ago
- 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
- 7fbd691 Get rid of warnings on some platforms by using %u for a size_t. by Neal Norwitz · 19 years ago
- 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 19 years ago
- ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 19 years ago
- 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
- 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
- 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 977485d Use Py_ssize_t in helper function between Py_ssize_t-using functions. by Thomas Wouters · 19 years ago
- 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
- 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- b2308bb Fix bug: by Michael W. Hudson · 20 years ago
- 95c1e50 SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Will backport by Neal Norwitz · 20 years ago
- d45014b Fix PyString_Format so that the "%s" format works again when Unicode is not by Georg Brandl · 20 years ago
- ab61923 Fix bug in last checkin (2.231). To match previous behavior, unicode by Neil Schemenauer · 20 years ago
- cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 20 years ago
- 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 20 years ago
- 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 20 years ago
- 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 20 years ago
- faa7648 More bug #1077106 stuff, sorry -- modem induced impatiece! by Michael W. Hudson · 20 years ago
- 561fbf1 SF bug #1054139: serious string hashing error in 2.4b1 by Raymond Hettinger · 21 years ago
- 674f241 SF Patch #1007087: Return new string for single subclass joins (Bug #1001011) by Raymond Hettinger · 21 years ago
- 618fbf5 This was quite a dark bug in my recent in-place string concatenation by Armin Rigo · 21 years ago
- 79f7ad2 Fixed some compiler warnings. by Armin Rigo · 21 years ago
- 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 21 years ago
- 1dffb12 .encode()/.decode() patch part 2. by Marc-André Lemburg · 21 years ago
- d2d4598 Allow string and unicode return types from .encode()/.decode() by Marc-André Lemburg · 21 years ago
- e7c0532 sizeof(char) is 1, by definition, so get rid of that expression in by Tim Peters · 21 years ago
- 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 21 years ago
- 75c00ef [SF #866875] Add a specialized routine for one character by Hye-Shik Chang · 21 years ago
- ac4ea13 There are places in Python which assume bytes have 8-bits. Formalize that a by Skip Montanaro · 21 years ago
- 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
- 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
- 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
- d22bb65 Avoid confusing name for the 3rd argument to str.replace(). by Fred Drake · 22 years ago
- 6828e18 Patch #825679: Clarify semantics of .isfoo on empty strings. Backported to 2.3. by Martin v. Löwis · 22 years ago
- 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 22 years ago
- 9ff3f03 Fix whitespace. by Walter Dörwald · 22 years ago
- ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 22 years ago
- a713218 Reformat a few docstrings that caused line wraps in help() output. by Guido van Rossum · 22 years ago
- 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
- 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
- 5d5e7c0 SF patch #664192 bug #661913: inconsistent error messages between string by Raymond Hettinger · 22 years ago
- 0a2f849 GvR's idea to use memset() for the most common special case of repeating by Raymond Hettinger · 22 years ago