| Commit message (Expand) | Author | Age | Files | Lines |
* | Removed blocks from several functions in unicodeobject and stringobject where... | Christian Heimes | 2007-11-22 | 1 | -36/+9 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 1 | -1/+1 |
|
|
* | Merged revisions 59056-59076 via svnmerge from | Christian Heimes | 2007-11-20 | 1 | -2/+19 |
|
|
* | Merged revisions 59005-59040 via svnmerge from | Christian Heimes | 2007-11-18 | 1 | -32/+16 |
|
|
* | Replace PyObject_Unicode with PyObject_Str everywhere, and remove the | Thomas Heller | 2007-11-15 | 1 | -6/+6 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -131/+94 |
|
|
* | Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. | Christian Heimes | 2007-11-04 | 1 | -4/+8 |
|
|
* | Merged revisions 58221-58741 via svnmerge from | Guido van Rossum | 2007-11-01 | 1 | -3/+6 |
|
|
* | Patch # 1302 by Christian Heimes (with some love from me :-). | Guido van Rossum | 2007-10-25 | 1 | -12/+39 |
|
|
* | Fix a broken format in a PyErr_Format() call: %lx is not supported. | Guido van Rossum | 2007-10-24 | 1 | -1/+1 |
|
|
* | Patch #1071: Improve unicode.translate() so that you can pass unicode | Georg Brandl | 2007-10-23 | 1 | -4/+48 |
|
|
* | Make str/str8 comparisons return True/False for !=/==. | Brett Cannon | 2007-10-22 | 1 | -10/+0 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -2/+2 |
|
|
* | 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 | 1 | -1/+34 |
|
|
* | 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 | 1 | -4/+0 |
|
|
* | Delete bufferobject.[ch]. | Guido van Rossum | 2007-10-08 | 1 | -1/+5 |
|
|
* | Patch # 1145 by Thomas Lee: | Guido van Rossum | 2007-09-27 | 1 | -7/+13 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 1 | -1/+1 |
|
|
* | Optimize unicode_hash() by not calling | Guido van Rossum | 2007-09-18 | 1 | -12/+18 |
|
|
* | Micro optimizations after staring at gprof output for a while. | Guido van Rossum | 2007-09-18 | 1 | -3/+4 |
|
|
* | Restore caching of unicode hash value. This apparently was broken | Neil Schemenauer | 2007-09-07 | 1 | -5/+12 |
|
|
* | 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 | 1 | -19/+0 |
|
|
* | Change %s argument for PyUnicode_FromFormat to | Martin v. Löwis | 2007-08-31 | 1 | -2/+46 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 1 | -23/+1 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Commit strict str/bytes distinction. | Guido van Rossum | 2007-08-29 | 1 | -50/+5 |
|
|
* | Merge the trunk changes in. Breaks socket.ssl for now. | Thomas Wouters | 2007-08-28 | 1 | -0/+6 |
|
|
* | Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, s... | Eric Smith | 2007-08-27 | 1 | -343/+2 |
|
|
* | Cleanup in anticipation of moving formatteriterator and fieldnameiterator int... | Eric Smith | 2007-08-27 | 1 | -2/+2 |
|
|
* | 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 | 1 | -30/+20 |
|
|
* | PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje... | Eric Smith | 2007-08-26 | 1 | -8/+157 |
|
|
* | Restore an assert, but move it to the proper place. | Neal Norwitz | 2007-08-26 | 1 | -1/+1 |
|
|
* | Remove assert that seems out of place. It triggers with test_string, | Neal Norwitz | 2007-08-26 | 1 | -2/+0 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 1 | -15/+231 |
|
|
* | Since PyUnicode_AsString is a public API, don't just assert, but do | Neal Norwitz | 2007-08-25 | 1 | -1/+4 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -48/+15 |
|
|
* | Move some declarations before code, to compile with GCC 2.95. | Guido van Rossum | 2007-08-17 | 1 | -7/+7 |
|
|
* | Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and | Walter Dörwald | 2007-08-16 | 1 | -0/+266 |
|
|
* | Get rid of some dead code and unneeded XXX comments by Neal. | Guido van Rossum | 2007-08-16 | 1 | -11/+3 |
|
|
* | Implement PEP 3131. Add isidentifier to str. | Martin v. Löwis | 2007-08-15 | 1 | -1/+44 |
|
|
* | Add comment that should be addressed | Neal Norwitz | 2007-08-12 | 1 | -0/+3 |
|
|