123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413 |
- #ifndef Py_UNICODEOBJECT_H
- #define Py_UNICODEOBJECT_H
- #include <stdarg.h>
- #include <ctype.h>
- #ifndef Py_USING_UNICODE
- #define PyUnicode_Check(op) 0
- #define PyUnicode_CheckExact(op) 0
- #else
- #ifndef Py_UNICODE_SIZE
- #error Must define Py_UNICODE_SIZE
- #endif
- #if Py_UNICODE_SIZE >= 4
- #define Py_UNICODE_WIDE
- #endif
- #ifndef PY_UNICODE_TYPE
- # if defined(MS_WIN32) && Py_UNICODE_SIZE == 2
- # define HAVE_USABLE_WCHAR_T
- # define PY_UNICODE_TYPE wchar_t
- # endif
- # if defined(Py_UNICODE_WIDE)
- # define PY_UNICODE_TYPE Py_UCS4
- # endif
- #endif
- #ifdef HAVE_USABLE_WCHAR_T
- # ifndef HAVE_WCHAR_H
- # define HAVE_WCHAR_H
- # endif
- #endif
- #ifdef HAVE_WCHAR_H
- # ifdef _HAVE_BSDI
- # include <time.h>
- # endif
- # include <wchar.h>
- #endif
- #if SIZEOF_INT >= 4
- typedef unsigned int Py_UCS4;
- #elif SIZEOF_LONG >= 4
- typedef unsigned long Py_UCS4;
- #endif
- typedef PY_UNICODE_TYPE Py_UNICODE;
- #ifndef Py_UNICODE_WIDE
- # define PyUnicode_AsASCIIString PyUnicodeUCS2_AsASCIIString
- # define PyUnicode_AsCharmapString PyUnicodeUCS2_AsCharmapString
- # define PyUnicode_AsEncodedObject PyUnicodeUCS2_AsEncodedObject
- # define PyUnicode_AsEncodedString PyUnicodeUCS2_AsEncodedString
- # define PyUnicode_AsLatin1String PyUnicodeUCS2_AsLatin1String
- # define PyUnicode_AsRawUnicodeEscapeString PyUnicodeUCS2_AsRawUnicodeEscapeString
- # define PyUnicode_AsUTF32String PyUnicodeUCS2_AsUTF32String
- # define PyUnicode_AsUTF16String PyUnicodeUCS2_AsUTF16String
- # define PyUnicode_AsUTF8String PyUnicodeUCS2_AsUTF8String
- # define PyUnicode_AsUnicode PyUnicodeUCS2_AsUnicode
- # define PyUnicode_AsUnicodeEscapeString PyUnicodeUCS2_AsUnicodeEscapeString
- # define PyUnicode_AsWideChar PyUnicodeUCS2_AsWideChar
- # define PyUnicode_ClearFreeList PyUnicodeUCS2_ClearFreelist
- # define PyUnicode_Compare PyUnicodeUCS2_Compare
- # define PyUnicode_Concat PyUnicodeUCS2_Concat
- # define PyUnicode_Contains PyUnicodeUCS2_Contains
- # define PyUnicode_Count PyUnicodeUCS2_Count
- # define PyUnicode_Decode PyUnicodeUCS2_Decode
- # define PyUnicode_DecodeASCII PyUnicodeUCS2_DecodeASCII
- # define PyUnicode_DecodeCharmap PyUnicodeUCS2_DecodeCharmap
- # define PyUnicode_DecodeLatin1 PyUnicodeUCS2_DecodeLatin1
- # define PyUnicode_DecodeRawUnicodeEscape PyUnicodeUCS2_DecodeRawUnicodeEscape
- # define PyUnicode_DecodeUTF32 PyUnicodeUCS2_DecodeUTF32
- # define PyUnicode_DecodeUTF32Stateful PyUnicodeUCS2_DecodeUTF32Stateful
- # define PyUnicode_DecodeUTF16 PyUnicodeUCS2_DecodeUTF16
- # define PyUnicode_DecodeUTF16Stateful PyUnicodeUCS2_DecodeUTF16Stateful
- # define PyUnicode_DecodeUTF8 PyUnicodeUCS2_DecodeUTF8
- # define PyUnicode_DecodeUTF8Stateful PyUnicodeUCS2_DecodeUTF8Stateful
- # define PyUnicode_DecodeUnicodeEscape PyUnicodeUCS2_DecodeUnicodeEscape
- # define PyUnicode_Encode PyUnicodeUCS2_Encode
- # define PyUnicode_EncodeASCII PyUnicodeUCS2_EncodeASCII
- # define PyUnicode_EncodeCharmap PyUnicodeUCS2_EncodeCharmap
- # define PyUnicode_EncodeDecimal PyUnicodeUCS2_EncodeDecimal
- # define PyUnicode_EncodeLatin1 PyUnicodeUCS2_EncodeLatin1
- # define PyUnicode_EncodeRawUnicodeEscape PyUnicodeUCS2_EncodeRawUnicodeEscape
- # define PyUnicode_EncodeUTF32 PyUnicodeUCS2_EncodeUTF32
- # define PyUnicode_EncodeUTF16 PyUnicodeUCS2_EncodeUTF16
- # define PyUnicode_EncodeUTF8 PyUnicodeUCS2_EncodeUTF8
- # define PyUnicode_EncodeUnicodeEscape PyUnicodeUCS2_EncodeUnicodeEscape
- # define PyUnicode_Find PyUnicodeUCS2_Find
- # define PyUnicode_Format PyUnicodeUCS2_Format
- # define PyUnicode_FromEncodedObject PyUnicodeUCS2_FromEncodedObject
- # define PyUnicode_FromFormat PyUnicodeUCS2_FromFormat
- # define PyUnicode_FromFormatV PyUnicodeUCS2_FromFormatV
- # define PyUnicode_FromObject PyUnicodeUCS2_FromObject
- # define PyUnicode_FromOrdinal PyUnicodeUCS2_FromOrdinal
- # define PyUnicode_FromString PyUnicodeUCS2_FromString
- # define PyUnicode_FromStringAndSize PyUnicodeUCS2_FromStringAndSize
- # define PyUnicode_FromUnicode PyUnicodeUCS2_FromUnicode
- # define PyUnicode_FromWideChar PyUnicodeUCS2_FromWideChar
- # define PyUnicode_GetDefaultEncoding PyUnicodeUCS2_GetDefaultEncoding
- # define PyUnicode_GetMax PyUnicodeUCS2_GetMax
- # define PyUnicode_GetSize PyUnicodeUCS2_GetSize
- # define PyUnicode_Join PyUnicodeUCS2_Join
- # define PyUnicode_Partition PyUnicodeUCS2_Partition
- # define PyUnicode_RPartition PyUnicodeUCS2_RPartition
- # define PyUnicode_RSplit PyUnicodeUCS2_RSplit
- # define PyUnicode_Replace PyUnicodeUCS2_Replace
- # define PyUnicode_Resize PyUnicodeUCS2_Resize
- # define PyUnicode_RichCompare PyUnicodeUCS2_RichCompare
- # define PyUnicode_SetDefaultEncoding PyUnicodeUCS2_SetDefaultEncoding
- # define PyUnicode_Split PyUnicodeUCS2_Split
- # define PyUnicode_Splitlines PyUnicodeUCS2_Splitlines
- # define PyUnicode_Tailmatch PyUnicodeUCS2_Tailmatch
- # define PyUnicode_Translate PyUnicodeUCS2_Translate
- # define PyUnicode_TranslateCharmap PyUnicodeUCS2_TranslateCharmap
- # define _PyUnicode_AsDefaultEncodedString _PyUnicodeUCS2_AsDefaultEncodedString
- # define _PyUnicode_Fini _PyUnicodeUCS2_Fini
- # define _PyUnicode_Init _PyUnicodeUCS2_Init
- # define _PyUnicode_IsAlpha _PyUnicodeUCS2_IsAlpha
- # define _PyUnicode_IsDecimalDigit _PyUnicodeUCS2_IsDecimalDigit
- # define _PyUnicode_IsDigit _PyUnicodeUCS2_IsDigit
- # define _PyUnicode_IsLinebreak _PyUnicodeUCS2_IsLinebreak
- # define _PyUnicode_IsLowercase _PyUnicodeUCS2_IsLowercase
- # define _PyUnicode_IsNumeric _PyUnicodeUCS2_IsNumeric
- # define _PyUnicode_IsTitlecase _PyUnicodeUCS2_IsTitlecase
- # define _PyUnicode_IsUppercase _PyUnicodeUCS2_IsUppercase
- # define _PyUnicode_IsWhitespace _PyUnicodeUCS2_IsWhitespace
- # define _PyUnicode_ToDecimalDigit _PyUnicodeUCS2_ToDecimalDigit
- # define _PyUnicode_ToDigit _PyUnicodeUCS2_ToDigit
- # define _PyUnicode_ToLowercase _PyUnicodeUCS2_ToLowercase
- # define _PyUnicode_ToNumeric _PyUnicodeUCS2_ToNumeric
- # define _PyUnicode_ToTitlecase _PyUnicodeUCS2_ToTitlecase
- # define _PyUnicode_ToUppercase _PyUnicodeUCS2_ToUppercase
- #else
- # define PyUnicode_AsASCIIString PyUnicodeUCS4_AsASCIIString
- # define PyUnicode_AsCharmapString PyUnicodeUCS4_AsCharmapString
- # define PyUnicode_AsEncodedObject PyUnicodeUCS4_AsEncodedObject
- # define PyUnicode_AsEncodedString PyUnicodeUCS4_AsEncodedString
- # define PyUnicode_AsLatin1String PyUnicodeUCS4_AsLatin1String
- # define PyUnicode_AsRawUnicodeEscapeString PyUnicodeUCS4_AsRawUnicodeEscapeString
- # define PyUnicode_AsUTF32String PyUnicodeUCS4_AsUTF32String
- # define PyUnicode_AsUTF16String PyUnicodeUCS4_AsUTF16String
- # define PyUnicode_AsUTF8String PyUnicodeUCS4_AsUTF8String
- # define PyUnicode_AsUnicode PyUnicodeUCS4_AsUnicode
- # define PyUnicode_AsUnicodeEscapeString PyUnicodeUCS4_AsUnicodeEscapeString
- # define PyUnicode_AsWideChar PyUnicodeUCS4_AsWideChar
- # define PyUnicode_ClearFreeList PyUnicodeUCS4_ClearFreelist
- # define PyUnicode_Compare PyUnicodeUCS4_Compare
- # define PyUnicode_Concat PyUnicodeUCS4_Concat
- # define PyUnicode_Contains PyUnicodeUCS4_Contains
- # define PyUnicode_Count PyUnicodeUCS4_Count
- # define PyUnicode_Decode PyUnicodeUCS4_Decode
- # define PyUnicode_DecodeASCII PyUnicodeUCS4_DecodeASCII
- # define PyUnicode_DecodeCharmap PyUnicodeUCS4_DecodeCharmap
- # define PyUnicode_DecodeLatin1 PyUnicodeUCS4_DecodeLatin1
- # define PyUnicode_DecodeRawUnicodeEscape PyUnicodeUCS4_DecodeRawUnicodeEscape
- # define PyUnicode_DecodeUTF32 PyUnicodeUCS4_DecodeUTF32
- # define PyUnicode_DecodeUTF32Stateful PyUnicodeUCS4_DecodeUTF32Stateful
- # define PyUnicode_DecodeUTF16 PyUnicodeUCS4_DecodeUTF16
- # define PyUnicode_DecodeUTF16Stateful PyUnicodeUCS4_DecodeUTF16Stateful
- # define PyUnicode_DecodeUTF8 PyUnicodeUCS4_DecodeUTF8
- # define PyUnicode_DecodeUTF8Stateful PyUnicodeUCS4_DecodeUTF8Stateful
- # define PyUnicode_DecodeUnicodeEscape PyUnicodeUCS4_DecodeUnicodeEscape
- # define PyUnicode_Encode PyUnicodeUCS4_Encode
- # define PyUnicode_EncodeASCII PyUnicodeUCS4_EncodeASCII
- # define PyUnicode_EncodeCharmap PyUnicodeUCS4_EncodeCharmap
- # define PyUnicode_EncodeDecimal PyUnicodeUCS4_EncodeDecimal
- # define PyUnicode_EncodeLatin1 PyUnicodeUCS4_EncodeLatin1
- # define PyUnicode_EncodeRawUnicodeEscape PyUnicodeUCS4_EncodeRawUnicodeEscape
- # define PyUnicode_EncodeUTF32 PyUnicodeUCS4_EncodeUTF32
- # define PyUnicode_EncodeUTF16 PyUnicodeUCS4_EncodeUTF16
- # define PyUnicode_EncodeUTF8 PyUnicodeUCS4_EncodeUTF8
- # define PyUnicode_EncodeUnicodeEscape PyUnicodeUCS4_EncodeUnicodeEscape
- # define PyUnicode_Find PyUnicodeUCS4_Find
- # define PyUnicode_Format PyUnicodeUCS4_Format
- # define PyUnicode_FromEncodedObject PyUnicodeUCS4_FromEncodedObject
- # define PyUnicode_FromFormat PyUnicodeUCS4_FromFormat
- # define PyUnicode_FromFormatV PyUnicodeUCS4_FromFormatV
- # define PyUnicode_FromObject PyUnicodeUCS4_FromObject
- # define PyUnicode_FromOrdinal PyUnicodeUCS4_FromOrdinal
- # define PyUnicode_FromString PyUnicodeUCS4_FromString
- # define PyUnicode_FromStringAndSize PyUnicodeUCS4_FromStringAndSize
- # define PyUnicode_FromUnicode PyUnicodeUCS4_FromUnicode
- # define PyUnicode_FromWideChar PyUnicodeUCS4_FromWideChar
- # define PyUnicode_GetDefaultEncoding PyUnicodeUCS4_GetDefaultEncoding
- # define PyUnicode_GetMax PyUnicodeUCS4_GetMax
- # define PyUnicode_GetSize PyUnicodeUCS4_GetSize
- # define PyUnicode_Join PyUnicodeUCS4_Join
- # define PyUnicode_Partition PyUnicodeUCS4_Partition
- # define PyUnicode_RPartition PyUnicodeUCS4_RPartition
- # define PyUnicode_RSplit PyUnicodeUCS4_RSplit
- # define PyUnicode_Replace PyUnicodeUCS4_Replace
- # define PyUnicode_Resize PyUnicodeUCS4_Resize
- # define PyUnicode_RichCompare PyUnicodeUCS4_RichCompare
- # define PyUnicode_SetDefaultEncoding PyUnicodeUCS4_SetDefaultEncoding
- # define PyUnicode_Split PyUnicodeUCS4_Split
- # define PyUnicode_Splitlines PyUnicodeUCS4_Splitlines
- # define PyUnicode_Tailmatch PyUnicodeUCS4_Tailmatch
- # define PyUnicode_Translate PyUnicodeUCS4_Translate
- # define PyUnicode_TranslateCharmap PyUnicodeUCS4_TranslateCharmap
- # define _PyUnicode_AsDefaultEncodedString _PyUnicodeUCS4_AsDefaultEncodedString
- # define _PyUnicode_Fini _PyUnicodeUCS4_Fini
- # define _PyUnicode_Init _PyUnicodeUCS4_Init
- # define _PyUnicode_IsAlpha _PyUnicodeUCS4_IsAlpha
- # define _PyUnicode_IsDecimalDigit _PyUnicodeUCS4_IsDecimalDigit
- # define _PyUnicode_IsDigit _PyUnicodeUCS4_IsDigit
- # define _PyUnicode_IsLinebreak _PyUnicodeUCS4_IsLinebreak
- # define _PyUnicode_IsLowercase _PyUnicodeUCS4_IsLowercase
- # define _PyUnicode_IsNumeric _PyUnicodeUCS4_IsNumeric
- # define _PyUnicode_IsTitlecase _PyUnicodeUCS4_IsTitlecase
- # define _PyUnicode_IsUppercase _PyUnicodeUCS4_IsUppercase
- # define _PyUnicode_IsWhitespace _PyUnicodeUCS4_IsWhitespace
- # define _PyUnicode_ToDecimalDigit _PyUnicodeUCS4_ToDecimalDigit
- # define _PyUnicode_ToDigit _PyUnicodeUCS4_ToDigit
- # define _PyUnicode_ToLowercase _PyUnicodeUCS4_ToLowercase
- # define _PyUnicode_ToNumeric _PyUnicodeUCS4_ToNumeric
- # define _PyUnicode_ToTitlecase _PyUnicodeUCS4_ToTitlecase
- # define _PyUnicode_ToUppercase _PyUnicodeUCS4_ToUppercase
- #endif
- #if defined(HAVE_USABLE_WCHAR_T) && defined(WANT_WCTYPE_FUNCTIONS)
- #include <wctype.h>
- #define Py_UNICODE_ISSPACE(ch) iswspace(ch)
- #define Py_UNICODE_ISLOWER(ch) iswlower(ch)
- #define Py_UNICODE_ISUPPER(ch) iswupper(ch)
- #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch)
- #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch)
- #define Py_UNICODE_TOLOWER(ch) towlower(ch)
- #define Py_UNICODE_TOUPPER(ch) towupper(ch)
- #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch)
- #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch)
- #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch)
- #define Py_UNICODE_ISNUMERIC(ch) _PyUnicode_IsNumeric(ch)
- #define Py_UNICODE_TODECIMAL(ch) _PyUnicode_ToDecimalDigit(ch)
- #define Py_UNICODE_TODIGIT(ch) _PyUnicode_ToDigit(ch)
- #define Py_UNICODE_TONUMERIC(ch) _PyUnicode_ToNumeric(ch)
- #define Py_UNICODE_ISALPHA(ch) iswalpha(ch)
- #else
- #define Py_UNICODE_ISSPACE(ch) \
- ((ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch))
- #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch)
- #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch)
- #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch)
- #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch)
- #define Py_UNICODE_TOLOWER(ch) _PyUnicode_ToLowercase(ch)
- #define Py_UNICODE_TOUPPER(ch) _PyUnicode_ToUppercase(ch)
- #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch)
- #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch)
- #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch)
- #define Py_UNICODE_ISNUMERIC(ch) _PyUnicode_IsNumeric(ch)
- #define Py_UNICODE_TODECIMAL(ch) _PyUnicode_ToDecimalDigit(ch)
- #define Py_UNICODE_TODIGIT(ch) _PyUnicode_ToDigit(ch)
- #define Py_UNICODE_TONUMERIC(ch) _PyUnicode_ToNumeric(ch)
- #define Py_UNICODE_ISALPHA(ch) _PyUnicode_IsAlpha(ch)
- #endif
- #define Py_UNICODE_ISALNUM(ch) \
- (Py_UNICODE_ISALPHA(ch) || \
- Py_UNICODE_ISDECIMAL(ch) || \
- Py_UNICODE_ISDIGIT(ch) || \
- Py_UNICODE_ISNUMERIC(ch))
- #define Py_UNICODE_COPY(target, source, length) \
- Py_MEMCPY((target), (source), (length)*sizeof(Py_UNICODE))
- #define Py_UNICODE_FILL(target, value, length) \
- do {Py_ssize_t i_; Py_UNICODE *t_ = (target); Py_UNICODE v_ = (value);\
- for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\
- } while (0)
- #define Py_UNICODE_MATCH(string, offset, substring) \
- ((*((string)->str + (offset)) == *((substring)->str)) && \
- ((*((string)->str + (offset) + (substring)->length-1) == *((substring)->str + (substring)->length-1))) && \
- !memcmp((string)->str + (offset), (substring)->str, (substring)->length*sizeof(Py_UNICODE)))
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct {
- PyObject_HEAD
- Py_ssize_t length;
- Py_UNICODE *str;
- long hash;
- PyObject *defenc;
- } PyUnicodeObject;
- PyAPI_DATA(PyTypeObject) PyUnicode_Type;
- #define PyUnicode_Check(op) \
- PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
- #define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type)
- #define PyUnicode_GET_SIZE(op) \
- (((PyUnicodeObject *)(op))->length)
- #define PyUnicode_GET_DATA_SIZE(op) \
- (((PyUnicodeObject *)(op))->length * sizeof(Py_UNICODE))
- #define PyUnicode_AS_UNICODE(op) \
- (((PyUnicodeObject *)(op))->str)
- #define PyUnicode_AS_DATA(op) \
- ((const char *)((PyUnicodeObject *)(op))->str)
- #define Py_UNICODE_REPLACEMENT_CHARACTER ((Py_UNICODE) 0xFFFD)
- PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
- const Py_UNICODE *u,
- Py_ssize_t size
- );
- PyAPI_FUNC(PyObject*) PyUnicode_FromStringAndSize(
- const char *u,
- Py_ssize_t size
- );
- PyAPI_FUNC(PyObject*) PyUnicode_FromString(
- const char *u
- );
- PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
- PyObject *unicode
- );
- PyAPI_FUNC(Py_ssize_t) PyUnicode_GetSize(
- PyObject *unicode
- );
- PyAPI_FUNC(Py_UNICODE) PyUnicode_GetMax(void);
- PyAPI_FUNC(int) PyUnicode_Resize(
- PyObject **unicode,
- Py_ssize_t length
- );
- PyAPI_FUNC(PyObject*) PyUnicode_FromEncodedObject(
- register PyObject *obj,
- const char *encoding,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_FromObject(
- register PyObject *obj
- );
- PyAPI_FUNC(PyObject *) PyUnicode_FromFormatV(const char*, va_list);
- PyAPI_FUNC(PyObject *) PyUnicode_FromFormat(const char*, ...);
- PyAPI_FUNC(PyObject *) _PyUnicode_FormatAdvanced(PyObject *obj,
- Py_UNICODE *format_spec,
- Py_ssize_t format_spec_len);
- #ifdef HAVE_WCHAR_H
- PyAPI_FUNC(PyObject*) PyUnicode_FromWideChar(
- register const wchar_t *w,
- Py_ssize_t size
- );
- PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
- PyUnicodeObject *unicode,
- register wchar_t *w,
- Py_ssize_t size
- );
- #endif
- PyAPI_FUNC(PyObject*) PyUnicode_FromOrdinal(int ordinal);
- PyAPI_FUNC(int) PyUnicode_ClearFreeList(void);
- PyAPI_FUNC(PyObject *) _PyUnicode_AsDefaultEncodedString(
- PyObject *, const char *);
- PyAPI_FUNC(const char*) PyUnicode_GetDefaultEncoding(void);
- PyAPI_FUNC(int) PyUnicode_SetDefaultEncoding(
- const char *encoding
- );
- PyAPI_FUNC(PyObject*) PyUnicode_Decode(
- const char *s,
- Py_ssize_t size,
- const char *encoding,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_Encode(
- const Py_UNICODE *s,
- Py_ssize_t size,
- const char *encoding,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsEncodedObject(
- PyObject *unicode,
- const char *encoding,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsEncodedString(
- PyObject *unicode,
- const char *encoding,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_BuildEncodingMap(
- PyObject* string
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF7(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF7Stateful(
- const char *string,
- Py_ssize_t length,
- const char *errors,
- Py_ssize_t *consumed
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF7(
- const Py_UNICODE *data,
- Py_ssize_t length,
- int base64SetO,
- int base64WhiteSpace,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8Stateful(
- const char *string,
- Py_ssize_t length,
- const char *errors,
- Py_ssize_t *consumed
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsUTF8String(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF8(
- const Py_UNICODE *data,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32(
- const char *string,
- Py_ssize_t length,
- const char *errors,
- int *byteorder
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32Stateful(
- const char *string,
- Py_ssize_t length,
- const char *errors,
- int *byteorder,
- Py_ssize_t *consumed
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsUTF32String(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF32(
- const Py_UNICODE *data,
- Py_ssize_t length,
- const char *errors,
- int byteorder
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16(
- const char *string,
- Py_ssize_t length,
- const char *errors,
- int *byteorder
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
- const char *string,
- Py_ssize_t length,
- const char *errors,
- int *byteorder,
- Py_ssize_t *consumed
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsUTF16String(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF16(
- const Py_UNICODE *data,
- Py_ssize_t length,
- const char *errors,
- int byteorder
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeUnicodeEscape(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsUnicodeEscapeString(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeUnicodeEscape(
- const Py_UNICODE *data,
- Py_ssize_t length
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeRawUnicodeEscape(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsRawUnicodeEscapeString(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeRawUnicodeEscape(
- const Py_UNICODE *data,
- Py_ssize_t length
- );
- PyObject *_PyUnicode_DecodeUnicodeInternal(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeLatin1(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsLatin1String(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeLatin1(
- const Py_UNICODE *data,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeASCII(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsASCIIString(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeASCII(
- const Py_UNICODE *data,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
- const char *string,
- Py_ssize_t length,
- PyObject *mapping,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsCharmapString(
- PyObject *unicode,
- PyObject *mapping
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeCharmap(
- const Py_UNICODE *data,
- Py_ssize_t length,
- PyObject *mapping,
- const char *errors
- );
- PyAPI_FUNC(PyObject *) PyUnicode_TranslateCharmap(
- const Py_UNICODE *data,
- Py_ssize_t length,
- PyObject *table,
- const char *errors
- );
- #ifdef MS_WIN32
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeMBCS(
- const char *string,
- Py_ssize_t length,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_DecodeMBCSStateful(
- const char *string,
- Py_ssize_t length,
- const char *errors,
- Py_ssize_t *consumed
- );
- PyAPI_FUNC(PyObject*) PyUnicode_AsMBCSString(
- PyObject *unicode
- );
- PyAPI_FUNC(PyObject*) PyUnicode_EncodeMBCS(
- const Py_UNICODE *data,
- Py_ssize_t length,
- const char *errors
- );
- #endif
- PyAPI_FUNC(int) PyUnicode_EncodeDecimal(
- Py_UNICODE *s,
- Py_ssize_t length,
- char *output,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_Concat(
- PyObject *left,
- PyObject *right
- );
- PyAPI_FUNC(PyObject*) PyUnicode_Split(
- PyObject *s,
- PyObject *sep,
- Py_ssize_t maxsplit
- );
- PyAPI_FUNC(PyObject*) PyUnicode_Splitlines(
- PyObject *s,
- int keepends
- );
- PyAPI_FUNC(PyObject*) PyUnicode_Partition(
- PyObject *s,
- PyObject *sep
- );
- PyAPI_FUNC(PyObject*) PyUnicode_RPartition(
- PyObject *s,
- PyObject *sep
- );
- PyAPI_FUNC(PyObject*) PyUnicode_RSplit(
- PyObject *s,
- PyObject *sep,
- Py_ssize_t maxsplit
- );
- PyAPI_FUNC(PyObject *) PyUnicode_Translate(
- PyObject *str,
- PyObject *table,
- const char *errors
- );
- PyAPI_FUNC(PyObject*) PyUnicode_Join(
- PyObject *separator,
- PyObject *seq
- );
- PyAPI_FUNC(Py_ssize_t) PyUnicode_Tailmatch(
- PyObject *str,
- PyObject *substr,
- Py_ssize_t start,
- Py_ssize_t end,
- int direction
- );
- PyAPI_FUNC(Py_ssize_t) PyUnicode_Find(
- PyObject *str,
- PyObject *substr,
- Py_ssize_t start,
- Py_ssize_t end,
- int direction
- );
- PyAPI_FUNC(Py_ssize_t) PyUnicode_Count(
- PyObject *str,
- PyObject *substr,
- Py_ssize_t start,
- Py_ssize_t end
- );
- PyAPI_FUNC(PyObject *) PyUnicode_Replace(
- PyObject *str,
- PyObject *substr,
- PyObject *replstr,
- Py_ssize_t maxcount
- );
- PyAPI_FUNC(int) PyUnicode_Compare(
- PyObject *left,
- PyObject *right
- );
- PyAPI_FUNC(PyObject *) PyUnicode_RichCompare(
- PyObject *left,
- PyObject *right,
- int op
- );
- PyAPI_FUNC(PyObject *) PyUnicode_Format(
- PyObject *format,
- PyObject *args
- );
- PyAPI_FUNC(int) PyUnicode_Contains(
- PyObject *container,
- PyObject *element
- );
- PyAPI_FUNC(PyObject *) _PyUnicode_XStrip(
- PyUnicodeObject *self,
- int striptype,
- PyObject *sepobj
- );
- PyAPI_DATA(const unsigned char) _Py_ascii_whitespace[];
- PyAPI_FUNC(int) _PyUnicode_IsLowercase(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsUppercase(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsTitlecase(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsWhitespace(
- const Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsLinebreak(
- const Py_UNICODE ch
- );
- PyAPI_FUNC(Py_UNICODE) _PyUnicode_ToLowercase(
- Py_UNICODE ch
- );
- PyAPI_FUNC(Py_UNICODE) _PyUnicode_ToUppercase(
- Py_UNICODE ch
- );
- PyAPI_FUNC(Py_UNICODE) _PyUnicode_ToTitlecase(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_ToDecimalDigit(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_ToDigit(
- Py_UNICODE ch
- );
- PyAPI_FUNC(double) _PyUnicode_ToNumeric(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsDecimalDigit(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsDigit(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsNumeric(
- Py_UNICODE ch
- );
- PyAPI_FUNC(int) _PyUnicode_IsAlpha(
- Py_UNICODE ch
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
- #endif
|