| Commit message (Expand) | Author | Age | Files | Lines |
* | #2630: Implement PEP 3138. | Georg Brandl | 2008-06-11 | 3 | -1/+7 |
|
|
* | Refactored known type optimization, in anticipation of backporting to 2.6. I... | Eric Smith | 2008-06-02 | 1 | -7/+13 |
|
|
* | Optimization of str.format() for cases with unicode, long, and float | Eric Smith | 2008-05-31 | 1 | -7/+28 |
|
|
* | 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 |
|
|
* | Merged revisions 63078 via svnmerge from | Eric Smith | 2008-05-11 | 4 | -3/+150 |
|
|
* | Merged revisions 62199 via svnmerge from | Martin v. Löwis | 2008-04-07 | 2 | -5/+24 |
|
|
* | Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,... | Christian Heimes | 2008-03-18 | 1 | -1/+6 |
|
|
* | Corrected assert to check for correct type in py3k. | Eric Smith | 2008-02-24 | 1 | -1/+1 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-22 | 1 | -40/+15 |
|
|
* | Port 60893 to py3k, without unicode test. | Eric Smith | 2008-02-18 | 1 | -0/+16 |
|
|
* | Fixes for shared 2.6 code that implements PEP 3101, advanced string | Eric Smith | 2008-02-17 | 4 | -150/+185 |
|
|
* | Partially revert r60376: restore ability for ints to be automatically convert... | Eric Smith | 2008-01-28 | 1 | -4/+15 |
|
|
* | Restrict format presentation types to those specified in the 'Standard Format... | Eric Smith | 2008-01-27 | 1 | -77/+0 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -4/+4 |
|
|
* | Fixed issue #1564: The set implementation should special-case PyUnicode inste... | Christian Heimes | 2007-12-10 | 1 | -0/+21 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 2 | -4/+4 |
|
|
* | Merged revisions 59005-59040 via svnmerge from | Christian Heimes | 2007-11-18 | 1 | -0/+50 |
|
|
* | Replace PyObject_Unicode with PyObject_Str everywhere, and remove the | Thomas Heller | 2007-11-15 | 2 | -2/+2 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -7/+7 |
|
|
* | For PEP3137: Adds missing methods to the mutable PyBytes object (soon | Gregory P. Smith | 2007-10-16 | 5 | -1/+484 |
|
|
* | Simplified recursion logic. Modified variable name to match string.Formatter. | Eric Smith | 2007-09-05 | 1 | -12/+10 |
|
|
* | Changed some ValueError's to KeyError and IndexError. | Eric Smith | 2007-09-04 | 1 | -7/+2 |
|
|
* | Fix segfault discovered by Ron Adam. Not checking for terminating right brac... | Eric Smith | 2007-09-03 | 1 | -4/+10 |
|
|
* | Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking... | Eric Smith | 2007-09-01 | 3 | -15/+5 |
|
|
* | Added format tests. | Eric Smith | 2007-08-30 | 1 | -14/+14 |
|
|
* | Patch # 1048 by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-08-29 | 1 | -1/+1 |
|
|
* | Corrected missed #if in r57652. | Eric Smith | 2007-08-29 | 1 | -0/+2 |
|
|
* | Added conditional compilation for '()', which was an allowed sign code in a | Eric Smith | 2007-08-29 | 1 | -1/+8 |
|
|
* | Modified parsing of format strings, so that we always return | Eric Smith | 2007-08-29 | 1 | -155/+157 |
|
|
* | Simplified tuple returned by string._formatter_parser to only have | Eric Smith | 2007-08-28 | 1 | -8/+1 |
|
|
* | Changed STRINGLIB_CMP from an inline function to a macro in order to avoid a ... | Eric Smith | 2007-08-28 | 1 | -0/+11 |
|
|
* | Code layout changes for PEP 7 compliance. | Eric Smith | 2007-08-28 | 2 | -23/+39 |
|
|
* | Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, s... | Eric Smith | 2007-08-27 | 1 | -0/+345 |
|
|
* | Cleanup in anticipation of moving formatteriterator and fieldnameiterator int... | Eric Smith | 2007-08-27 | 1 | -23/+7 |
|
|
* | Fix refleaks in test_unicode and test_string related to the new format code. | Neal Norwitz | 2007-08-27 | 1 | -0/+1 |
|
|
* | This adds a leak, but fixes a crash. The leaking code is: | Neal Norwitz | 2007-08-27 | 1 | -0/+1 |
|
|
* | PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje... | Eric Smith | 2007-08-26 | 1 | -165/+260 |
|
|
* | Get rid of compiler warning on 64-bit | Neal Norwitz | 2007-08-25 | 1 | -4/+8 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 4 | -0/+1852 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -4/+4 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 2 | -11/+15 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 5 | -0/+395 |
|
|