| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 57778-58052 via svnmerge from | Thomas Wouters | 2007-09-08 | 3 | -10/+34 |
|
|
* | Restore caching of unicode hash value. This apparently was broken | Neil Schemenauer | 2007-09-07 | 1 | -5/+12 |
|
|
* | Check in some documentation tweaks for PEP 3141, add some tests, and implement | Jeffrey Yasskin | 2007-09-07 | 1 | -3/+4 |
|
|
* | 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 |
|
|
* | Fix refleaks exposed by test_raise. | Collin Winter | 2007-09-01 | 1 | -1/+5 |
|
|
* | Get rid of METH_OLDARGS. | Georg Brandl | 2007-09-01 | 1 | -13/+4 |
|
|
* | Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking... | Eric Smith | 2007-09-01 | 3 | -15/+5 |
|
|
* | Removed unicode_format and unicode__format__, they just called through to oth... | Eric Smith | 2007-08-31 | 1 | -19/+2 |
|
|
* | Per Georg's suggestion, get rid of str.decode() (which always raises an | Guido van Rossum | 2007-08-31 | 2 | -35/+9 |
|
|
* | Change %s argument for PyUnicode_FromFormat to | Martin v. Löwis | 2007-08-31 | 1 | -2/+46 |
|
|
* | round(1e20) wrongly returned 0. | Thomas Heller | 2007-08-31 | 1 | -1/+0 |
|
|
* | Remove checking redundantly for checks of PyInt and PyLong. | Neal Norwitz | 2007-08-31 | 3 | -6/+5 |
|
|
* | Use pow() instead of repeated multiplication by 10 in round(x, n). | Guido van Rossum | 2007-08-31 | 1 | -15/+5 |
|
|
* | Issue #1066: implement PEP 3109, 2/3 of PEP 3134. | Collin Winter | 2007-08-31 | 1 | -1/+97 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 9 | -278/+25 |
|
|
* | Added format tests. | Eric Smith | 2007-08-30 | 1 | -14/+14 |
|
|
* | Fix #1753395. | Georg Brandl | 2007-08-30 | 1 | -16/+4 |
|
|
* | Set startinpos before calling the error handler. | Walter Dörwald | 2007-08-30 | 1 | -0/+1 |
|
|
* | Rewrap line. | Walter Dörwald | 2007-08-30 | 1 | -1/+2 |
|
|
* | Try to fix the problem on the Windows buildbot where this code: | Neal Norwitz | 2007-08-30 | 1 | -1/+1 |
|
|
* | Make it an error to compare a bytes object and a Unicode object. | Jeremy Hylton | 2007-08-29 | 1 | -2/+8 |
|
|
* | Patch # 1048 by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-08-29 | 1 | -1/+1 |
|
|
* | PEP 7 clean ups, no change in behavior. | Jeremy Hylton | 2007-08-29 | 1 | -49/+53 |
|
|
* | Oops, remove an abort() I put in for debugging. | Guido van Rossum | 2007-08-29 | 1 | -1/+0 |
|
|
* | Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but | Guido van Rossum | 2007-08-29 | 1 | -4/+14 |
|
|
* | 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 |
|
|
* | Commit strict str/bytes distinction. | Guido van Rossum | 2007-08-29 | 2 | -111/+54 |
|
|
* | Modified parsing of format strings, so that we always return | Eric Smith | 2007-08-29 | 1 | -155/+157 |
|
|
* | Fix buglet in sliceobjects, they were not returning Py_NotImplemented when | Thomas Wouters | 2007-08-28 | 1 | -0/+5 |
|
|
* | Merge the trunk changes in. Breaks socket.ssl for now. | Thomas Wouters | 2007-08-28 | 6 | -15/+259 |
|
|
* | 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 | 2 | -343/+347 |
|
|
* | Cleanup in anticipation of moving formatteriterator and fieldnameiterator int... | Eric Smith | 2007-08-27 | 2 | -25/+9 |
|
|
* | There should be no codecs left that return str8 intead of bytes. | Guido van Rossum | 2007-08-27 | 1 | -7/+1 |
|
|
* | Fixed accidental indentation change. | Eric Smith | 2007-08-27 | 1 | -1/+1 |
|
|
* | PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico... | Eric Smith | 2007-08-27 | 1 | -337/+344 |
|
|
* | Fix refleaks in test_unicode and test_string related to the new format code. | Neal Norwitz | 2007-08-27 | 2 | -30/+21 |
|
|
* | Make some internal functions static | Neal Norwitz | 2007-08-27 | 1 | -3/+3 |
|
|
* | 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 | 2 | -173/+417 |
|
|
* | Restore an assert, but move it to the proper place. | Neal Norwitz | 2007-08-26 | 1 | -1/+1 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 1 | -14/+10 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 5 | -31/+15 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 4 | -60/+30 |
|
|
* | Remove assert that seems out of place. It triggers with test_string, | Neal Norwitz | 2007-08-26 | 1 | -2/+0 |
|
|