summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib
Commit message (Expand)AuthorAgeFilesLines
* Replace PyUnicodeObject type by PyObjectVictor Stinner2011-11-031-12/+8
* Replace PyUnicodeObject* by PyObject* where it was irrevelantVictor Stinner2011-10-231-4/+4
* Issue #12170: The count(), find(), rfind(), index() and rindex() methodsAntoine Pitrou2011-10-201-0/+43
* Fix typoAntoine Pitrou2011-10-171-1/+1
* Add a comment explaining this heuristic.Antoine Pitrou2011-10-131-0/+3
* Simplify heuristic for when to use memchrAntoine Pitrou2011-10-131-11/+1
* Issue #13155: Optimize finding the optimal character width of an unicode stringAntoine Pitrou2011-10-121-0/+136
* stringlib: Fix STRINGLIB_STR for UCS2/UCS4Victor Stinner2011-10-112-2/+2
* Fix fastsearch for UCS2 and UCS4Victor Stinner2011-10-118-2/+15
* Issue #13134: optimize finding single-character strings using memchrAntoine Pitrou2011-10-111-0/+73
* Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE.Martin v. Löwis2011-10-071-1/+1
* Fix massive slowdown in string formatting with str.format.Antoine Pitrou2011-10-071-128/+24
* Fix compilation warnings under 64-bit WindowsAntoine Pitrou2011-10-061-1/+1
* Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCIIVictor Stinner2011-10-051-0/+34
* Mark PyUnicode_FromUCS[124] as privateVictor Stinner2011-09-283-3/+3
* Implement PEP 393.Martin v. Löwis2011-09-2815-1764/+386
* Issue #1621: Fix undefined behaviour from signed overflow in datetime module ...Mark Dickinson2011-09-251-8/+6
* Issue #1621: Fix undefined behaviour from signed overflow in get_integer (str...Mark Dickinson2011-09-241-9/+7
* Closes #12579. Positional fields with str.format_map() now raise a ValueError...Eric V. Smith2011-07-181-0/+10
* MERGE: startswith and endswith don't accept None as slice index. Patch by Tor...Jesus Cea2011-04-201-19/+48
|\
| * startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-19/+48
* | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|\ \ | |/
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| * Merged revisions 83400 via svnmerge fromMark Dickinson2010-08-011-4/+8
| * Merged revisions 81823,81835 via svnmerge fromBenjamin Peterson2010-06-081-0/+4
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-094-163/+163
| * Merged revisions 78350 via svnmerge fromEric Smith2010-02-231-4/+7
| * Merged revisions 78333 via svnmerge fromEric Smith2010-02-221-10/+40
| * Merged revisions 77937 via svnmerge fromBenjamin Peterson2010-02-031-4/+5
| * Merged revisions 74222 via svnmerge fromEric Smith2009-07-271-9/+16
* | Issue #11302: missing type check on _string.formatter_field_name_split and _s...Eric Smith2011-01-291-0/+10
* | Issue #7094: Add alternate ('#') flag to __format__ methods for float, comple...Eric Smith2010-11-251-16/+6
* | Followup to r86170: fix reference leak in str.formatAntoine Pitrou2010-11-051-1/+0
* | Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.fo...Eric Smith2010-11-041-1/+10
* | #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-141-2/+2
* | Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an a...Florent Xicluna2010-08-081-2/+2
* | Issue #9337: Make float.__str__ identical to float.__repr__.Mark Dickinson2010-08-041-6/+11
* | Issue #9416: Fix some issues with complex formatting where theMark Dickinson2010-08-011-4/+8
* | remove unneeded error checkBenjamin Peterson2010-07-111-8/+0
* | Merged revisions 81824 via svnmerge fromBenjamin Peterson2010-06-071-2/+2
* | Merged revisions 81820 via svnmerge fromBenjamin Peterson2010-06-071-0/+4
* | Merged revisions 81813 via svnmerge fromBenjamin Peterson2010-06-071-1/+1
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-092-98/+98
* | Merged revisions 78349 via svnmerge fromEric Smith2010-02-231-4/+7
* | Merged revisions 78329 via svnmerge fromEric Smith2010-02-221-10/+40
* | Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,...Benjamin Peterson2010-02-031-4/+5
* | Merged revisions 77469-77470 via svnmerge fromAntoine Pitrou2010-01-131-11/+23
* | svnmerge duplicated contents of Objects/stringlib/split.hAntoine Pitrou2010-01-131-394/+0
* | Merged revisions 77461 via svnmerge fromAntoine Pitrou2010-01-139-195/+884
* | Merged revisions 77241 via svnmerge fromAntoine Pitrou2010-01-026-86/+94