| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator | Victor Stinner | 2012-02-23 | 8 | -66/+23 |
|
|
* | remove some usage of Py_UNICODE_TOUPPER/LOWER | Benjamin Peterson | 2012-01-12 | 6 | -12/+0 |
|
|
* | Issue #13624: Write a specialized UTF-8 encoder to allow more optimization | Victor Stinner | 2011-12-18 | 1 | -0/+197 |
|
|
* | Issue #13623: Fix a performance regression introduced by issue #12170 in | Victor Stinner | 2011-12-18 | 1 | -10/+17 |
|
|
* | Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) | Victor Stinner | 2011-12-01 | 1 | -1/+1 |
|
|
* | Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case. | Antoine Pitrou | 2011-11-21 | 1 | -0/+156 |
|
|
* | stringlib: remove unused STRINGLIB_FILL | Victor Stinner | 2011-11-20 | 6 | -6/+0 |
|
|
* | Replace PyUnicodeObject type by PyObject | Victor Stinner | 2011-11-03 | 1 | -12/+8 |
|
|
* | Replace PyUnicodeObject* by PyObject* where it was irrevelant | Victor Stinner | 2011-10-23 | 1 | -4/+4 |
|
|
* | Issue #12170: The count(), find(), rfind(), index() and rindex() methods | Antoine Pitrou | 2011-10-20 | 1 | -0/+43 |
|
|
* | Fix typo | Antoine Pitrou | 2011-10-17 | 1 | -1/+1 |
|
|
* | Add a comment explaining this heuristic. | Antoine Pitrou | 2011-10-13 | 1 | -0/+3 |
|
|
* | Simplify heuristic for when to use memchr | Antoine Pitrou | 2011-10-13 | 1 | -11/+1 |
|
|
* | Issue #13155: Optimize finding the optimal character width of an unicode string | Antoine Pitrou | 2011-10-12 | 1 | -0/+136 |
|
|
* | stringlib: Fix STRINGLIB_STR for UCS2/UCS4 | Victor Stinner | 2011-10-11 | 2 | -2/+2 |
|
|
* | Fix fastsearch for UCS2 and UCS4 | Victor Stinner | 2011-10-11 | 8 | -2/+15 |
|
|
* | Issue #13134: optimize finding single-character strings using memchr | Antoine Pitrou | 2011-10-11 | 1 | -0/+73 |
|
|
* | Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. | Martin v. Löwis | 2011-10-07 | 1 | -1/+1 |
|
|
* | Fix massive slowdown in string formatting with str.format. | Antoine Pitrou | 2011-10-07 | 1 | -128/+24 |
|
|
* | Fix compilation warnings under 64-bit Windows | Antoine Pitrou | 2011-10-06 | 1 | -1/+1 |
|
|
* | Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII | Victor Stinner | 2011-10-05 | 1 | -0/+34 |
|
|
* | Mark PyUnicode_FromUCS[124] as private | Victor Stinner | 2011-09-28 | 3 | -3/+3 |
|
|
* | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 15 | -1764/+386 |
|
|
* | Issue #1621: Fix undefined behaviour from signed overflow in datetime module ... | Mark Dickinson | 2011-09-25 | 1 | -8/+6 |
|
|
* | Issue #1621: Fix undefined behaviour from signed overflow in get_integer (str... | Mark Dickinson | 2011-09-24 | 1 | -9/+7 |
|
|
* | Closes #12579. Positional fields with str.format_map() now raise a ValueError... | Eric V. Smith | 2011-07-18 | 1 | -0/+10 |
|
|
* | MERGE: startswith and endswith don't accept None as slice index. Patch by Tor... | Jesus Cea | 2011-04-20 | 1 | -19/+48 |
|\ |
|
| * | startswith and endswith don't accept None as slice index. Patch by Torsten Be... | Jesus Cea | 2011-04-20 | 1 | -19/+48 |
|
|
* | | #11515: Merge with 3.1. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|
|
| * | Merged revisions 83400 via svnmerge from | Mark Dickinson | 2010-08-01 | 1 | -4/+8 |
|
|
| * | Merged revisions 81823,81835 via svnmerge from | Benjamin Peterson | 2010-06-08 | 1 | -0/+4 |
|
|
| * | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 4 | -163/+163 |
|
|
| * | Merged revisions 78350 via svnmerge from | Eric Smith | 2010-02-23 | 1 | -4/+7 |
|
|
| * | Merged revisions 78333 via svnmerge from | Eric Smith | 2010-02-22 | 1 | -10/+40 |
|
|
| * | Merged revisions 77937 via svnmerge from | Benjamin Peterson | 2010-02-03 | 1 | -4/+5 |
|
|
| * | Merged revisions 74222 via svnmerge from | Eric Smith | 2009-07-27 | 1 | -9/+16 |
|
|
* | | Issue #11302: missing type check on _string.formatter_field_name_split and _s... | Eric Smith | 2011-01-29 | 1 | -0/+10 |
|
|
* | | Issue #7094: Add alternate ('#') flag to __format__ methods for float, comple... | Eric Smith | 2010-11-25 | 1 | -16/+6 |
|
|
* | | Followup to r86170: fix reference leak in str.format | Antoine Pitrou | 2010-11-05 | 1 | -1/+0 |
|
|
* | | Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.fo... | Eric Smith | 2010-11-04 | 1 | -1/+10 |
|
|
* | | #9418: first step of moving private string methods to _string module. | Georg Brandl | 2010-10-14 | 1 | -2/+2 |
|
|
* | | Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an a... | Florent Xicluna | 2010-08-08 | 1 | -2/+2 |
|
|
* | | Issue #9337: Make float.__str__ identical to float.__repr__. | Mark Dickinson | 2010-08-04 | 1 | -6/+11 |
|
|
* | | Issue #9416: Fix some issues with complex formatting where the | Mark Dickinson | 2010-08-01 | 1 | -4/+8 |
|
|
* | | remove unneeded error check | Benjamin Peterson | 2010-07-11 | 1 | -8/+0 |
|
|
* | | Merged revisions 81824 via svnmerge from | Benjamin Peterson | 2010-06-07 | 1 | -2/+2 |
|
|
* | | Merged revisions 81820 via svnmerge from | Benjamin Peterson | 2010-06-07 | 1 | -0/+4 |
|
|
* | | Merged revisions 81813 via svnmerge from | Benjamin Peterson | 2010-06-07 | 1 | -1/+1 |
|
|
* | | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 2 | -98/+98 |
|
|