summaryrefslogtreecommitdiffstats
path: root/Include/bytearrayobject.h
Commit message (Collapse)AuthorAgeFilesLines
* Use PyAPI_DATA.Antoine Pitrou2010-01-171-1/+1
|
* Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`)Antoine Pitrou2010-01-171-1/+5
| | | | | | could crash in many places because of the PyByteArray_AS_STRING() macro returning NULL. The macro now returns a statically allocated empty string instead.
* Make the _H #define's match the header file names. Fix comments toGregory P. Smith2008-06-011-4/+4
| | | | mention the correct type names.
* First step of the C API rename:Christian Heimes2008-05-261-0/+53
renamed Include/bytesobject.h to Include/bytearrayobject.h renamed Include/stringobject.h to Include/bytesobject.h added Include/stringobject.h with aliases