summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
* add NULL checking for PyBytes_FromObject; R=NealBenjamin Peterson2008-08-271-0/+5
* make bytes(o) respect __bytes__ #2415Benjamin Peterson2008-08-261-2/+9
* Fixed yet another compiler warning of 64bit builds.Christian Heimes2008-08-241-1/+1
* Closes release blocker #3627.Neal Norwitz2008-08-241-1/+7
* #3650: fix a reference leak in bytes.split('x')Amaury Forgeot d'Arc2008-08-221-4/+10
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-15/+15
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* #2538: bytes objects can only provide read-only buffersAntoine Pitrou2008-08-021-1/+1
* Move the codec decode type checks to bytes/bytearray.decode().Marc-André Lemburg2008-06-061-2/+2
* Merged revisions 63856-63857,63859-63860 via svnmerge fromMartin v. Löwis2008-06-041-0/+13
* Fix misspelling.Georg Brandl2008-06-041-1/+1
* Fix all return types for str/bytes/bytearray docstrings and make the wording ...Georg Brandl2008-05-301-17/+17
* clean up some docstrings and errors in bytesobject.cBenjamin Peterson2008-05-271-21/+18
* Renamed files bytesobject.[ch] and stringobject.[ch]Christian Heimes2008-05-261-2865/+2994
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-233/+233
* Made the TypeError message in bytes_iconcat() less confusing.Alexandre Vassalotti2008-05-091-2/+2
* Re-indented bytes_getbuffer() and bytes_releasebuffer() to 4-spaceAlexandre Vassalotti2008-04-141-16/+16
* Improved bytes_extend() to avoid making a full copy of the temporaryAlexandre Vassalotti2008-04-141-17/+23
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-1/+5
* Merged revisions 61964-61979 via svnmerge fromChristian Heimes2008-03-281-2/+6
* Fixed #1969: split and rsplit in bytearray are inconsistentChristian Heimes2008-01-301-3/+3
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-61/+61
* typoSkip Montanaro2007-12-091-1/+1
* Merged revisions 59376-59406 via svnmerge fromChristian Heimes2007-12-081-13/+2
* Remove a few tab characters introduced by r59314.Alexandre Vassalotti2007-12-041-3/+3
* Issue #1283: Allow any iterable of integers to be passed toAlexandre Vassalotti2007-12-041-18/+71
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-13/+13
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-38/+38
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-173/+223
* Patch 1171 by mfenniak -- allow subclassing of bytes.Guido van Rossum2007-11-031-4/+11
* Sort the method lists for str8 and bytes so differences are more apparent.Guido van Rossum2007-10-261-68/+68
* Patch 1335 by Christian Heimes.Guido van Rossum2007-10-261-1/+121
* Fix some Py_ssize_t warnings on Win64 that were probably bugsNeal Norwitz2007-10-261-2/+2
* Issue 1267, continued.Guido van Rossum2007-10-221-3/+1
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-161-82/+123
* Patch #1049 by Thomas Lee.Guido van Rossum2007-10-091-2/+2
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-15/+15
* Bug # 1125 (my code).Guido van Rossum2007-09-101-55/+183
* Per Georg's suggestion, get rid of str.decode() (which always raises anGuido van Rossum2007-08-311-16/+9
* Try to fix the problem on the Windows buildbot where this code:Neal Norwitz2007-08-301-1/+1
* Make it an error to compare a bytes object and a Unicode object.Jeremy Hylton2007-08-291-2/+8
* Commit strict str/bytes distinction.Guido van Rossum2007-08-291-61/+49
* Make some internal functions staticNeal Norwitz2007-08-271-3/+3
* Whitespace cleanup.Guido van Rossum2007-08-241-10/+10
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-0/+1
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-96/+161
* Fix core dump in an endcase of b.strip() that I missed.Guido van Rossum2007-08-081-1/+4
* Change PyUnicode_FromString[AndSize] to expect UTF-8.Martin v. Löwis2007-08-051-5/+7
* Fix merge breakage.Martin v. Löwis2007-07-211-6/+6