| Commit message (Expand) | Author | Age | Files | Lines |
* | Silence compiler warning | Mark Dickinson | 2009-09-27 | 1 | -1/+1 |
|
|
* | Merged revisions 72848 via svnmerge from | Eric Smith | 2009-05-23 | 1 | -2/+3 |
|
|
* | Merged revisions 71548 via svnmerge from | Eric Smith | 2009-04-13 | 1 | -1/+1 |
|
|
* | Merged revisions 70678 via svnmerge from | Mark Dickinson | 2009-03-29 | 1 | -1/+1 |
|
|
* | Merged revisions 69806 via svnmerge from | Eric Smith | 2009-02-20 | 1 | -17/+31 |
|
|
* | Merged revisions 68589 via svnmerge from | Antoine Pitrou | 2009-01-13 | 1 | -37/+30 |
|
|
* | #3967: Correct a crash in count() and find() methods of string-like objects. | Amaury Forgeot d'Arc | 2008-09-26 | 2 | -8/+6 |
|
|
* | Fix: | Neal Norwitz | 2008-08-24 | 1 | -1/+4 |
|
|
* | Silenced compiler warning | Christian Heimes | 2008-08-22 | 1 | -1/+1 |
|
|
* | Backport of r63826. | Eric Smith | 2008-08-18 | 1 | -6/+42 |
|
|
* | Backed out r65069, pending fixing it in Windows. | Eric Smith | 2008-07-17 | 1 | -6/+6 |
|
|
* | Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. | Eric Smith | 2008-07-17 | 1 | -6/+6 |
|
|
* | Renamed a parameter in calc_number_widths, for consistency with the same para... | Eric Smith | 2008-07-16 | 1 | -32/+32 |
|
|
* | Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.for... | Eric Smith | 2008-07-16 | 1 | -30/+68 |
|
|
* | Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for bin... | Eric Smith | 2008-07-15 | 1 | -13/+43 |
|
|
* | Fixed formatting with thousands separator and padding. Resolves issue 3140. | Eric Smith | 2008-06-24 | 1 | -13/+13 |
|
|
* | Typo in comment. | Eric Smith | 2008-06-24 | 1 | -1/+1 |
|
|
* | Modified interface to _Py_[String|Unicode]InsertThousandsGrouping, in anticip... | Eric Smith | 2008-06-24 | 2 | -20/+27 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 2 | -8/+8 |
|
|
* | Refactor and clean up str.format() code (and helpers) in advance of optimizat... | Eric Smith | 2008-05-30 | 1 | -69/+47 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 3 | -9/+9 |
|
|
* | Addresses issue 2802: 'n' formatting for integers. | Eric Smith | 2008-05-11 | 4 | -3/+150 |
|
|
* | Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. | Martin v. Löwis | 2008-04-07 | 2 | -5/+24 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 2 | -0/+472 |
|
|
* | Issue 2264: empty float presentation type needs to have at least one digit pa... | Eric Smith | 2008-03-17 | 1 | -1/+6 |
|
|
* | Corrected assert to check for correct type in py3k. | Eric Smith | 2008-02-24 | 1 | -1/+1 |
|
|
* | Now that PyOS_ascii_formatd supports the 'n' format, simplify the float forma... | Eric Smith | 2008-02-20 | 1 | -40/+15 |
|
|
* | Added code to correct combining str and unicode in ''.format(). Added test c... | Eric Smith | 2008-02-18 | 1 | -0/+16 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 4 | -0/+2273 |
|
|
* | Made _ParseTupleFinds only defined to unicodeobject.c | Facundo Batista | 2007-11-16 | 1 | -0/+3 |
|
|
* | Fix for stupid error (I need to remember to do a full 'make clean + make' | Facundo Batista | 2007-11-16 | 1 | -1/+1 |
|
|
* | Now in find, rfind, index, and rindex, you can use None as defaults, | Facundo Batista | 2007-11-16 | 1 | -0/+47 |
|
|
* | Fix endcase for str.rpartition() | Raymond Hettinger | 2006-09-04 | 1 | -4/+4 |
|
|
* | changed count to return 0 for slices outside the source string | Fredrik Lundh | 2006-05-30 | 1 | -1/+1 |
|
|
* | changed find/rfind to return -1 for matches outside the source string | Fredrik Lundh | 2006-05-30 | 1 | -10/+11 |
|
|
* | fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on | Fredrik Lundh | 2006-05-29 | 1 | -1/+4 |
|
|
* | needforspeed: stringlib refactoring: changed find_obj to find_slice, | Fredrik Lundh | 2006-05-27 | 1 | -18/+39 |
|
|
* | needforspeed: replace improvements, changed to Py_LOCAL_INLINE | Fredrik Lundh | 2006-05-27 | 4 | -9/+9 |
|
|
* | needforspeed: more stringlib refactoring | Fredrik Lundh | 2006-05-27 | 2 | -0/+62 |
|
|
* | Fix Coverity warnings. | Neal Norwitz | 2006-05-27 | 1 | -6/+1 |
|
|
* | needforspeed: stringlib refactoring: use stringlib/find for string find | Fredrik Lundh | 2006-05-26 | 1 | -6/+15 |
|
|
* | needforspeed: stringlib refactoring, continued. added count and | Fredrik Lundh | 2006-05-26 | 3 | -4/+95 |
|
|
* | needforspeed: added rpartition implementation | Fredrik Lundh | 2006-05-26 | 2 | -1/+68 |
|
|
* | removed unnecessary include | Fredrik Lundh | 2006-05-26 | 1 | -2/+0 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 1 | -0/+50 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 2 | -0/+102 |
|
|