| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 77743 via svnmerge from | Ezio Melotti | 2010-01-25 | 1 | -1/+1 |
|
|
* | Merged revisions 77461 via svnmerge from | Antoine Pitrou | 2010-01-13 | 1 | -447/+76 |
|
|
* | Issue #7382: Fix bytes.__getnewargs__. | Alexandre Vassalotti | 2010-01-12 | 1 | -1/+1 |
|
|
* | Issue #6688: Optimize PyBytes_FromObject(). | Alexandre Vassalotti | 2010-01-09 | 1 | -7/+52 |
|
|
* | Issue #6687: Moved the special-case for integers out of PyBytes_FromObject. | Alexandre Vassalotti | 2009-12-31 | 1 | -21/+25 |
|
|
* | Issue #5748: bytesobject.c should not have its own private defines for string... | Eric Smith | 2009-11-30 | 1 | -16/+2 |
|
|
* | Merged revisions 74929 via svnmerge from | Benjamin Peterson | 2009-09-18 | 1 | -3/+4 |
|
|
* | rename internal methods of the bytes object to bytes_ | Benjamin Peterson | 2009-04-18 | 1 | -102/+102 |
|
|
* | The other half of Issue #1580: use short float repr where possible. | Eric Smith | 2009-04-16 | 1 | -0/+1 |
|
|
* | Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecate | Georg Brandl | 2009-04-12 | 1 | -0/+8 |
|
|
* | Added ',' thousands grouping to int.__format__. See PEP 378. | Eric Smith | 2009-04-03 | 1 | -0/+1 |
|
|
* | Optimize slicing of bytes and bytearray by avoiding useless copying. | Alexandre Vassalotti | 2009-04-03 | 1 | -7/+5 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -2/+2 |
|
|
* | Merged revisions 68381 via svnmerge from | Benjamin Peterson | 2009-01-11 | 1 | -1/+1 |
|
|
* | Remove confusing error message in bytes.translate. | Georg Brandl | 2008-12-27 | 1 | -5/+0 |
|
|
* | Issue #4445: save 3 bytes of memory (on average) per bytes allocation. | Mark Dickinson | 2008-12-06 | 1 | -10/+18 |
|
|
* | STINNER Victor (haypo)'s patch for bug 3988, Byte warning mode and b'' != '' | Barry Warsaw | 2008-10-17 | 1 | -1/+1 |
|
|
* | Merged revisions 66748 via svnmerge from | Christian Heimes | 2008-10-02 | 1 | -1/+1 |
|
|
* | add NULL checking for PyBytes_FromObject; R=Neal | Benjamin Peterson | 2008-08-27 | 1 | -0/+5 |
|
|
* | make bytes(o) respect __bytes__ #2415 | Benjamin Peterson | 2008-08-26 | 1 | -2/+9 |
|
|
* | Fixed yet another compiler warning of 64bit builds. | Christian Heimes | 2008-08-24 | 1 | -1/+1 |
|
|
* | Closes release blocker #3627. | Neal Norwitz | 2008-08-24 | 1 | -1/+7 |
|
|
* | #3650: fix a reference leak in bytes.split('x') | Amaury Forgeot d'Arc | 2008-08-22 | 1 | -4/+10 |
|
|
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -15/+15 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|
* | #2538: bytes objects can only provide read-only buffers | Antoine Pitrou | 2008-08-02 | 1 | -1/+1 |
|
|
* | Move the codec decode type checks to bytes/bytearray.decode(). | Marc-André Lemburg | 2008-06-06 | 1 | -2/+2 |
|
|
* | Merged revisions 63856-63857,63859-63860 via svnmerge from | Martin v. Löwis | 2008-06-04 | 1 | -0/+13 |
|
|
* | Fix misspelling. | Georg Brandl | 2008-06-04 | 1 | -1/+1 |
|
|
* | Fix all return types for str/bytes/bytearray docstrings and make the wording ... | Georg Brandl | 2008-05-30 | 1 | -17/+17 |
|
|
* | clean up some docstrings and errors in bytesobject.c | Benjamin Peterson | 2008-05-27 | 1 | -21/+18 |
|
|
* | Renamed files bytesobject.[ch] and stringobject.[ch] | Christian Heimes | 2008-05-26 | 1 | -2865/+2994 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -3/+3 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -233/+233 |
|
|
* | Made the TypeError message in bytes_iconcat() less confusing. | Alexandre Vassalotti | 2008-05-09 | 1 | -2/+2 |
|
|
* | Re-indented bytes_getbuffer() and bytes_releasebuffer() to 4-space | Alexandre Vassalotti | 2008-04-14 | 1 | -16/+16 |
|
|
* | Improved bytes_extend() to avoid making a full copy of the temporary | Alexandre Vassalotti | 2008-04-14 | 1 | -17/+23 |
|
|
* | Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,... | Christian Heimes | 2008-04-13 | 1 | -1/+5 |
|
|
* | 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 |
|
|