| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 61964-61979 via svnmerge from | Christian Heimes | 2008-03-28 | 1 | -2/+6 |
|
|
* | Fixed #1969: split and rsplit in bytearray are inconsistent | Christian Heimes | 2008-01-30 | 1 | -3/+3 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -61/+61 |
|
|
* | typo | Skip Montanaro | 2007-12-09 | 1 | -1/+1 |
|
|
* | Merged revisions 59376-59406 via svnmerge from | Christian Heimes | 2007-12-08 | 1 | -13/+2 |
|
|
* | Remove a few tab characters introduced by r59314. | Alexandre Vassalotti | 2007-12-04 | 1 | -3/+3 |
|
|
* | Issue #1283: Allow any iterable of integers to be passed to | Alexandre Vassalotti | 2007-12-04 | 1 | -18/+71 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -13/+13 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 1 | -38/+38 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -173/+223 |
|
|
* | Patch 1171 by mfenniak -- allow subclassing of bytes. | Guido van Rossum | 2007-11-03 | 1 | -4/+11 |
|
|
* | Sort the method lists for str8 and bytes so differences are more apparent. | Guido van Rossum | 2007-10-26 | 1 | -68/+68 |
|
|
* | Patch 1335 by Christian Heimes. | Guido van Rossum | 2007-10-26 | 1 | -1/+121 |
|
|
* | Fix some Py_ssize_t warnings on Win64 that were probably bugs | Neal Norwitz | 2007-10-26 | 1 | -2/+2 |
|
|
* | Issue 1267, continued. | Guido van Rossum | 2007-10-22 | 1 | -3/+1 |
|
|
* | For PEP3137: Adds missing methods to the mutable PyBytes object (soon | Gregory P. Smith | 2007-10-16 | 1 | -82/+123 |
|
|
* | Patch #1049 by Thomas Lee. | Guido van Rossum | 2007-10-09 | 1 | -2/+2 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 1 | -15/+15 |
|
|
* | Bug # 1125 (my code). | Guido van Rossum | 2007-09-10 | 1 | -55/+183 |
|
|
* | Per Georg's suggestion, get rid of str.decode() (which always raises an | Guido van Rossum | 2007-08-31 | 1 | -16/+9 |
|
|
* | 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 |
|
|
* | Commit strict str/bytes distinction. | Guido van Rossum | 2007-08-29 | 1 | -61/+49 |
|
|
* | Make some internal functions static | Neal Norwitz | 2007-08-27 | 1 | -3/+3 |
|
|
* | Whitespace cleanup. | Guido van Rossum | 2007-08-24 | 1 | -10/+10 |
|
|
* | Code review of the new buffer protocol. Mostly add questions that should | Neal Norwitz | 2007-08-19 | 1 | -0/+1 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -96/+161 |
|
|
* | Fix core dump in an endcase of b.strip() that I missed. | Guido van Rossum | 2007-08-08 | 1 | -1/+4 |
|
|
* | Change PyUnicode_FromString[AndSize] to expect UTF-8. | Martin v. Löwis | 2007-08-05 | 1 | -5/+7 |
|
|
* | Fix merge breakage. | Martin v. Löwis | 2007-07-21 | 1 | -6/+6 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -66/+65 |
|
|
* | Fix test_pickle, by reverting the string opcodes (S, T, U) to returning | Guido van Rossum | 2007-07-19 | 1 | -5/+3 |
|
|
* | Change Py_BuildValue to generate Unicode objects for | Martin v. Löwis | 2007-07-18 | 1 | -0/+3 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -1/+1 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -13/+15 |
|
|
* | The NULL pointer for empty strings turns out to be a pain. | Guido van Rossum | 2007-05-09 | 1 | -1/+4 |
|
|
* | I don't know how come bytes.join() was a class method, but that's clearly | Guido van Rossum | 2007-05-09 | 1 | -5/+12 |
|
|
* | repr(b"\0") should return b"\x00", not the (unusual) b"\0". | Guido van Rossum | 2007-05-08 | 1 | -1/+1 |
|
|
* | Make all of test_bytes pass (except pickling, which is too badly busted). | Guido van Rossum | 2007-05-04 | 1 | -19/+11 |
|
|
* | Add trailing null bytes to a few more places. | Guido van Rossum | 2007-05-04 | 1 | -8/+12 |
|
|
* | More coding by random modification. | Guido van Rossum | 2007-05-04 | 1 | -8/+18 |
|
|
* | Rough and dirty job -- allow concatenation of bytes and arbitrary | Guido van Rossum | 2007-04-13 | 1 | -59/+165 |
|
|
* | Clean up trailing whitespace. | Guido van Rossum | 2007-04-12 | 1 | -18/+18 |
|
|
* | Real pickling for bytes. | Guido van Rossum | 2007-04-11 | 1 | -1/+14 |
|
|
* | Bytes should never equal unicode. | Guido van Rossum | 2007-04-09 | 1 | -1/+6 |
|
|
* | For Make Benefit Glorious Nation of Backwards Compatibility, | Guido van Rossum | 2007-04-09 | 1 | -10/+33 |
|
|
* | Fix off-by-one bug in memmove() call in bytes_insert(). | Guido van Rossum | 2007-02-27 | 1 | -1/+1 |
|
|
* | SF patch #1669633, add methods for bytes from Pete Shinners. | Neal Norwitz | 2007-02-27 | 1 | -1/+1556 |
|
|
* | Remove a few stray tabs from bytesobject.c. | Georg Brandl | 2007-02-27 | 1 | -30/+30 |
|
|
* | Implement bytes.fromhex(), with tests. | Georg Brandl | 2007-02-27 | 1 | -10/+76 |
|
|