annotate DEPENDENCIES/mingw32/Python27/include/bytesobject.h @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents 2a2c65a20a8b
children
rev   line source
Chris@87 1 #define PyBytesObject PyStringObject
Chris@87 2 #define PyBytes_Type PyString_Type
Chris@87 3
Chris@87 4 #define PyBytes_Check PyString_Check
Chris@87 5 #define PyBytes_CheckExact PyString_CheckExact
Chris@87 6 #define PyBytes_CHECK_INTERNED PyString_CHECK_INTERNED
Chris@87 7 #define PyBytes_AS_STRING PyString_AS_STRING
Chris@87 8 #define PyBytes_GET_SIZE PyString_GET_SIZE
Chris@87 9 #define Py_TPFLAGS_BYTES_SUBCLASS Py_TPFLAGS_STRING_SUBCLASS
Chris@87 10
Chris@87 11 #define PyBytes_FromStringAndSize PyString_FromStringAndSize
Chris@87 12 #define PyBytes_FromString PyString_FromString
Chris@87 13 #define PyBytes_FromFormatV PyString_FromFormatV
Chris@87 14 #define PyBytes_FromFormat PyString_FromFormat
Chris@87 15 #define PyBytes_Size PyString_Size
Chris@87 16 #define PyBytes_AsString PyString_AsString
Chris@87 17 #define PyBytes_Repr PyString_Repr
Chris@87 18 #define PyBytes_Concat PyString_Concat
Chris@87 19 #define PyBytes_ConcatAndDel PyString_ConcatAndDel
Chris@87 20 #define _PyBytes_Resize _PyString_Resize
Chris@87 21 #define _PyBytes_Eq _PyString_Eq
Chris@87 22 #define PyBytes_Format PyString_Format
Chris@87 23 #define _PyBytes_FormatLong _PyString_FormatLong
Chris@87 24 #define PyBytes_DecodeEscape PyString_DecodeEscape
Chris@87 25 #define _PyBytes_Join _PyString_Join
Chris@87 26 #define PyBytes_AsStringAndSize PyString_AsStringAndSize
Chris@87 27 #define _PyBytes_InsertThousandsGrouping _PyString_InsertThousandsGrouping