summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib
Commit message (Expand)AuthorAgeFilesLines
...
* | Issue #14744: Inline unicode_writer_write_char() and unicode_write_str()Victor Stinner2012-05-091-10/+26
* | Close #14716: str.format() now uses the new "unicode writer" API instead of theVictor Stinner2012-05-071-41/+19
* | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-221-0/+1
|\ \ | |/
* | Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separatorVictor Stinner2012-02-238-66/+23
* | remove some usage of Py_UNICODE_TOUPPER/LOWERBenjamin Peterson2012-01-126-12/+0
* | Issue #13624: Write a specialized UTF-8 encoder to allow more optimizationVictor Stinner2011-12-181-0/+197
* | Issue #13623: Fix a performance regression introduced by issue #12170 inVictor Stinner2011-12-181-10/+17
* | Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)Victor Stinner2011-12-011-1/+1
* | Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.Antoine Pitrou2011-11-211-0/+156
* | stringlib: remove unused STRINGLIB_FILLVictor Stinner2011-11-206-6/+0
* | 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