diff options
author | Christian Heimes <christian@cheimes.de> | 2008-05-26 12:29:14 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-05-26 12:29:14 (GMT) |
commit | 3497f9447633b0a60a0b42ba06f2246805b20bb9 (patch) | |
tree | adbb433e1bbe57b2fa11c6810eb962b75f663db6 /Include/Python.h | |
parent | b4701e638c1030e575adf441aab01ad6319cc83d (diff) | |
download | cpython-3497f9447633b0a60a0b42ba06f2246805b20bb9.zip cpython-3497f9447633b0a60a0b42ba06f2246805b20bb9.tar.gz cpython-3497f9447633b0a60a0b42ba06f2246805b20bb9.tar.bz2 |
First step of the C API rename:
renamed Include/bytesobject.h to Include/bytearrayobject.h
renamed Include/stringobject.h to Include/bytesobject.h
added Include/stringobject.h with aliases
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h index 60258ef..612bfb7 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -94,6 +94,7 @@ /* #include "memoryobject.h" */ #include "bufferobject.h" #include "bytesobject.h" +#include "bytearrayobject.h" #include "tupleobject.h" #include "listobject.h" #include "dictobject.h" |