| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 2 | -58/+4 |
|
|
* | For PEP3137: Adds missing methods to the mutable PyBytes object (soon | Gregory P. Smith | 2007-10-16 | 8 | -1069/+1254 |
|
|
* | Fix a small typo in the comment of unicode_default_encoding[]. | Alexandre Vassalotti | 2007-10-16 | 1 | -1/+1 |
|
|
* | Patch #1272, by Christian Heimes and Alexandre Vassalotti. | Guido van Rossum | 2007-10-15 | 3 | -14/+44 |
|
|
* | Remove the buffer API from PyUnicode as specified by PEP 3137. Also, | Alexandre Vassalotti | 2007-10-14 | 1 | -15/+1 |
|
|
* | Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i... | Travis E. Oliphant | 2007-10-13 | 2 | -5/+1 |
|
|
* | Fix problems with memoryview object. There is still more to do to finish PEP... | Travis E. Oliphant | 2007-10-12 | 2 | -354/+366 |
|
|
* | PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). | Guido van Rossum | 2007-10-09 | 1 | -1/+1 |
|
|
* | Patch #1049 by Thomas Lee. | Guido van Rossum | 2007-10-09 | 1 | -2/+2 |
|
|
* | Replace all (locale-dependent) uses of isupper(), tolower(), etc., by | Guido van Rossum | 2007-10-09 | 1 | -65/+302 |
|
|
* | Delete bufferobject.[ch]. | Guido van Rossum | 2007-10-08 | 3 | -726/+9 |
|
|
* | At least one of the buildbots was complaining about newview being used | Neal Norwitz | 2007-10-07 | 1 | -3/+2 |
|
|
* | Patch # 1145 by Thomas Lee: | Guido van Rossum | 2007-09-27 | 1 | -7/+13 |
|
|
* | Whitespace and line lengrth cleanup. | Guido van Rossum | 2007-09-25 | 1 | -47/+50 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 6 | -58/+118 |
|
|
* | Remove more cruft leftover from nb_coerce. Rename nb_coerce to | Neil Schemenauer | 2007-09-21 | 6 | -8/+7 |
|
|
* | Merged revisions 58203-58210 via svnmerge from | Thomas Wouters | 2007-09-19 | 1 | -0/+8 |
|
|
* | Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from | Thomas Wouters | 2007-09-19 | 3 | -1/+7 |
|
|
* | Optimize unicode_hash() by not calling | Guido van Rossum | 2007-09-18 | 1 | -12/+18 |
|
|
* | Thomas Wouters suggested an obvious improvement to unicode_eq(): | Guido van Rossum | 2007-09-18 | 1 | -1/+1 |
|
|
* | Switch dict lookup around to optimizing for unicode. | Guido van Rossum | 2007-09-18 | 1 | -32/+52 |
|
|
* | Micro optimizations after staring at gprof output for a while. | Guido van Rossum | 2007-09-18 | 2 | -11/+9 |
|
|
* | Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. | Sean Reifscheider | 2007-09-17 | 2 | -7/+7 |
|
|
* | Bug # 1125 (my code). | Guido van Rossum | 2007-09-10 | 1 | -55/+183 |
|
|
* | Drop convert_binop. | Martin v. Löwis | 2007-09-10 | 1 | -110/+48 |
|
|
* | 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 |
|
|