Christian Heimes | 3497f94 | 2008-05-26 12:29:14 +0000 | [diff] [blame] | 1 | #define PyBytesObject PyStringObject |
| 2 | #define PyBytes_Type PyString_Type |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 3 | |
Christian Heimes | 3497f94 | 2008-05-26 12:29:14 +0000 | [diff] [blame] | 4 | #define PyBytes_Check PyString_Check |
| 5 | #define PyBytes_CheckExact PyString_CheckExact |
| 6 | #define PyBytes_CHECK_INTERNED PyString_CHECK_INTERNED |
| 7 | #define PyBytes_AS_STRING PyString_AS_STRING |
| 8 | #define PyBytes_GET_SIZE PyString_GET_SIZE |
| 9 | #define Py_TPFLAGS_BYTES_SUBCLASS Py_TPFLAGS_STRING_SUBCLASS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 10 | |
Christian Heimes | 3497f94 | 2008-05-26 12:29:14 +0000 | [diff] [blame] | 11 | #define PyBytes_FromStringAndSize PyString_FromStringAndSize |
| 12 | #define PyBytes_FromString PyString_FromString |
| 13 | #define PyBytes_FromFormatV PyString_FromFormatV |
| 14 | #define PyBytes_FromFormat PyString_FromFormat |
| 15 | #define PyBytes_Size PyString_Size |
| 16 | #define PyBytes_AsString PyString_AsString |
| 17 | #define PyBytes_Repr PyString_Repr |
| 18 | #define PyBytes_Concat PyString_Concat |
| 19 | #define PyBytes_ConcatAndDel PyString_ConcatAndDel |
| 20 | #define _PyBytes_Resize _PyString_Resize |
| 21 | #define _PyBytes_Eq _PyString_Eq |
| 22 | #define PyBytes_Format PyString_Format |
| 23 | #define _PyBytes_FormatLong _PyString_FormatLong |
| 24 | #define PyBytes_DecodeEscape PyString_DecodeEscape |
| 25 | #define PyBytes_InternInPlace PyString_InternInPlace |
| 26 | #define PyBytes_InternImmortal PyString_InternImmortal |
| 27 | #define PyBytes_InternFromString PyString_InternFromString |
| 28 | #define _PyBytes_Join _PyString_Join |
| 29 | #define PyBytes_Decode PyString_Decode |
| 30 | #define PyBytes_Encode PyString_Encode |
| 31 | #define PyBytes_AsEncodedObject PyString_AsEncodedObject |
| 32 | #define PyBytes_AsEncodedString PyString_AsEncodedString |
| 33 | #define PyBytes_AsDecodedObject PyString_AsDecodedObject |
| 34 | #define PyBytes_AsDecodedString PyString_AsDecodedString |
| 35 | #define PyBytes_AsStringAndSize PyString_AsStringAndSize |
| 36 | #define _PyBytes_InsertThousandsGrouping _PyString_InsertThousandsGrouping |