unicodeobject.h 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259
  1. #ifndef Py_UNICODEOBJECT_H
  2. #define Py_UNICODEOBJECT_H
  3. #include <stdarg.h>
  4. /*
  5. Unicode implementation based on original code by Fredrik Lundh,
  6. modified by Marc-Andre Lemburg (mal@lemburg.com) according to the
  7. Unicode Integration Proposal. (See
  8. http://www.egenix.com/files/python/unicode-proposal.txt).
  9. Copyright (c) Corporation for National Research Initiatives.
  10. Original header:
  11. --------------------------------------------------------------------
  12. * Yet another Unicode string type for Python. This type supports the
  13. * 16-bit Basic Multilingual Plane (BMP) only.
  14. *
  15. * Written by Fredrik Lundh, January 1999.
  16. *
  17. * Copyright (c) 1999 by Secret Labs AB.
  18. * Copyright (c) 1999 by Fredrik Lundh.
  19. *
  20. * fredrik@pythonware.com
  21. * http://www.pythonware.com
  22. *
  23. * --------------------------------------------------------------------
  24. * This Unicode String Type is
  25. *
  26. * Copyright (c) 1999 by Secret Labs AB
  27. * Copyright (c) 1999 by Fredrik Lundh
  28. *
  29. * By obtaining, using, and/or copying this software and/or its
  30. * associated documentation, you agree that you have read, understood,
  31. * and will comply with the following terms and conditions:
  32. *
  33. * Permission to use, copy, modify, and distribute this software and its
  34. * associated documentation for any purpose and without fee is hereby
  35. * granted, provided that the above copyright notice appears in all
  36. * copies, and that both that copyright notice and this permission notice
  37. * appear in supporting documentation, and that the name of Secret Labs
  38. * AB or the author not be used in advertising or publicity pertaining to
  39. * distribution of the software without specific, written prior
  40. * permission.
  41. *
  42. * SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO
  43. * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  44. * FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR
  45. * ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  46. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  47. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  48. * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  49. * -------------------------------------------------------------------- */
  50. #include <ctype.h>
  51. /* === Internal API ======================================================= */
  52. /* --- Internal Unicode Format -------------------------------------------- */
  53. /* Python 3.x requires unicode */
  54. #define Py_USING_UNICODE
  55. #ifndef SIZEOF_WCHAR_T
  56. #error Must define SIZEOF_WCHAR_T
  57. #endif
  58. #define Py_UNICODE_SIZE SIZEOF_WCHAR_T
  59. /* If wchar_t can be used for UCS-4 storage, set Py_UNICODE_WIDE.
  60. Otherwise, Unicode strings are stored as UCS-2 (with limited support
  61. for UTF-16) */
  62. #if Py_UNICODE_SIZE >= 4
  63. #define Py_UNICODE_WIDE
  64. #endif
  65. /* Set these flags if the platform has "wchar.h" and the
  66. wchar_t type is a 16-bit unsigned type */
  67. /* #define HAVE_WCHAR_H */
  68. /* #define HAVE_USABLE_WCHAR_T */
  69. /* Py_UNICODE was the native Unicode storage format (code unit) used by
  70. Python and represents a single Unicode element in the Unicode type.
  71. With PEP 393, Py_UNICODE is deprecated and replaced with a
  72. typedef to wchar_t. */
  73. #ifndef Py_LIMITED_API
  74. #define PY_UNICODE_TYPE wchar_t
  75. typedef wchar_t Py_UNICODE;
  76. #endif
  77. /* If the compiler provides a wchar_t type we try to support it
  78. through the interface functions PyUnicode_FromWideChar(),
  79. PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). */
  80. #ifdef HAVE_USABLE_WCHAR_T
  81. # ifndef HAVE_WCHAR_H
  82. # define HAVE_WCHAR_H
  83. # endif
  84. #endif
  85. #if defined(MS_WINDOWS)
  86. # define HAVE_MBCS
  87. #endif
  88. #ifdef HAVE_WCHAR_H
  89. /* Work around a cosmetic bug in BSDI 4.x wchar.h; thanks to Thomas Wouters */
  90. # ifdef _HAVE_BSDI
  91. # include <time.h>
  92. # endif
  93. # include <wchar.h>
  94. #endif
  95. /* Py_UCS4 and Py_UCS2 are typedefs for the respective
  96. unicode representations. */
  97. #if SIZEOF_INT == 4
  98. typedef unsigned int Py_UCS4;
  99. #elif SIZEOF_LONG == 4
  100. typedef unsigned long Py_UCS4;
  101. #else
  102. #error "Could not find a proper typedef for Py_UCS4"
  103. #endif
  104. #if SIZEOF_SHORT == 2
  105. typedef unsigned short Py_UCS2;
  106. #else
  107. #error "Could not find a proper typedef for Py_UCS2"
  108. #endif
  109. typedef unsigned char Py_UCS1;
  110. /* --- Internal Unicode Operations ---------------------------------------- */
  111. /* Since splitting on whitespace is an important use case, and
  112. whitespace in most situations is solely ASCII whitespace, we
  113. optimize for the common case by using a quick look-up table
  114. _Py_ascii_whitespace (see below) with an inlined check.
  115. */
  116. #ifndef Py_LIMITED_API
  117. #define Py_UNICODE_ISSPACE(ch) \
  118. ((ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch))
  119. #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch)
  120. #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch)
  121. #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch)
  122. #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch)
  123. #define Py_UNICODE_TOLOWER(ch) _PyUnicode_ToLowercase(ch)
  124. #define Py_UNICODE_TOUPPER(ch) _PyUnicode_ToUppercase(ch)
  125. #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch)
  126. #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch)
  127. #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch)
  128. #define Py_UNICODE_ISNUMERIC(ch) _PyUnicode_IsNumeric(ch)
  129. #define Py_UNICODE_ISPRINTABLE(ch) _PyUnicode_IsPrintable(ch)
  130. #define Py_UNICODE_TODECIMAL(ch) _PyUnicode_ToDecimalDigit(ch)
  131. #define Py_UNICODE_TODIGIT(ch) _PyUnicode_ToDigit(ch)
  132. #define Py_UNICODE_TONUMERIC(ch) _PyUnicode_ToNumeric(ch)
  133. #define Py_UNICODE_ISALPHA(ch) _PyUnicode_IsAlpha(ch)
  134. #define Py_UNICODE_ISALNUM(ch) \
  135. (Py_UNICODE_ISALPHA(ch) || \
  136. Py_UNICODE_ISDECIMAL(ch) || \
  137. Py_UNICODE_ISDIGIT(ch) || \
  138. Py_UNICODE_ISNUMERIC(ch))
  139. #define Py_UNICODE_COPY(target, source, length) \
  140. Py_MEMCPY((target), (source), (length)*sizeof(Py_UNICODE))
  141. #define Py_UNICODE_FILL(target, value, length) \
  142. do {Py_ssize_t i_; Py_UNICODE *t_ = (target); Py_UNICODE v_ = (value);\
  143. for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\
  144. } while (0)
  145. /* macros to work with surrogates */
  146. #define Py_UNICODE_IS_SURROGATE(ch) (0xD800 <= (ch) && (ch) <= 0xDFFF)
  147. #define Py_UNICODE_IS_HIGH_SURROGATE(ch) (0xD800 <= (ch) && (ch) <= 0xDBFF)
  148. #define Py_UNICODE_IS_LOW_SURROGATE(ch) (0xDC00 <= (ch) && (ch) <= 0xDFFF)
  149. /* Join two surrogate characters and return a single Py_UCS4 value. */
  150. #define Py_UNICODE_JOIN_SURROGATES(high, low) \
  151. (((((Py_UCS4)(high) & 0x03FF) << 10) | \
  152. ((Py_UCS4)(low) & 0x03FF)) + 0x10000)
  153. /* high surrogate = top 10 bits added to D800 */
  154. #define Py_UNICODE_HIGH_SURROGATE(ch) (0xD800 - (0x10000 >> 10) + ((ch) >> 10))
  155. /* low surrogate = bottom 10 bits added to DC00 */
  156. #define Py_UNICODE_LOW_SURROGATE(ch) (0xDC00 + ((ch) & 0x3FF))
  157. /* Check if substring matches at given offset. The offset must be
  158. valid, and the substring must not be empty. */
  159. #define Py_UNICODE_MATCH(string, offset, substring) \
  160. ((*((string)->wstr + (offset)) == *((substring)->wstr)) && \
  161. ((*((string)->wstr + (offset) + (substring)->wstr_length-1) == *((substring)->wstr + (substring)->wstr_length-1))) && \
  162. !memcmp((string)->wstr + (offset), (substring)->wstr, (substring)->wstr_length*sizeof(Py_UNICODE)))
  163. #endif /* Py_LIMITED_API */
  164. #ifdef __cplusplus
  165. extern "C" {
  166. #endif
  167. /* --- Unicode Type ------------------------------------------------------- */
  168. #ifndef Py_LIMITED_API
  169. /* ASCII-only strings created through PyUnicode_New use the PyASCIIObject
  170. structure. state.ascii and state.compact are set, and the data
  171. immediately follow the structure. utf8_length and wstr_length can be found
  172. in the length field; the utf8 pointer is equal to the data pointer. */
  173. typedef struct {
  174. /* There are 4 forms of Unicode strings:
  175. - compact ascii:
  176. * structure = PyASCIIObject
  177. * test: PyUnicode_IS_COMPACT_ASCII(op)
  178. * kind = PyUnicode_1BYTE_KIND
  179. * compact = 1
  180. * ascii = 1
  181. * ready = 1
  182. * (length is the length of the utf8 and wstr strings)
  183. * (data starts just after the structure)
  184. * (since ASCII is decoded from UTF-8, the utf8 string are the data)
  185. - compact:
  186. * structure = PyCompactUnicodeObject
  187. * test: PyUnicode_IS_COMPACT(op) && !PyUnicode_IS_ASCII(op)
  188. * kind = PyUnicode_1BYTE_KIND, PyUnicode_2BYTE_KIND or
  189. PyUnicode_4BYTE_KIND
  190. * compact = 1
  191. * ready = 1
  192. * ascii = 0
  193. * utf8 is not shared with data
  194. * utf8_length = 0 if utf8 is NULL
  195. * wstr is shared with data and wstr_length=length
  196. if kind=PyUnicode_2BYTE_KIND and sizeof(wchar_t)=2
  197. or if kind=PyUnicode_4BYTE_KIND and sizeof(wchar_t)=4
  198. * wstr_length = 0 if wstr is NULL
  199. * (data starts just after the structure)
  200. - legacy string, not ready:
  201. * structure = PyUnicodeObject
  202. * test: kind == PyUnicode_WCHAR_KIND
  203. * length = 0 (use wstr_length)
  204. * hash = -1
  205. * kind = PyUnicode_WCHAR_KIND
  206. * compact = 0
  207. * ascii = 0
  208. * ready = 0
  209. * interned = SSTATE_NOT_INTERNED
  210. * wstr is not NULL
  211. * data.any is NULL
  212. * utf8 is NULL
  213. * utf8_length = 0
  214. - legacy string, ready:
  215. * structure = PyUnicodeObject structure
  216. * test: !PyUnicode_IS_COMPACT(op) && kind != PyUnicode_WCHAR_KIND
  217. * kind = PyUnicode_1BYTE_KIND, PyUnicode_2BYTE_KIND or
  218. PyUnicode_4BYTE_KIND
  219. * compact = 0
  220. * ready = 1
  221. * data.any is not NULL
  222. * utf8 is shared and utf8_length = length with data.any if ascii = 1
  223. * utf8_length = 0 if utf8 is NULL
  224. * wstr is shared with data.any and wstr_length = length
  225. if kind=PyUnicode_2BYTE_KIND and sizeof(wchar_t)=2
  226. or if kind=PyUnicode_4BYTE_KIND and sizeof(wchar_4)=4
  227. * wstr_length = 0 if wstr is NULL
  228. Compact strings use only one memory block (structure + characters),
  229. whereas legacy strings use one block for the structure and one block
  230. for characters.
  231. Legacy strings are created by PyUnicode_FromUnicode() and
  232. PyUnicode_FromStringAndSize(NULL, size) functions. They become ready
  233. when PyUnicode_READY() is called.
  234. See also _PyUnicode_CheckConsistency().
  235. */
  236. PyObject_HEAD
  237. Py_ssize_t length; /* Number of code points in the string */
  238. Py_hash_t hash; /* Hash value; -1 if not set */
  239. struct {
  240. /*
  241. SSTATE_NOT_INTERNED (0)
  242. SSTATE_INTERNED_MORTAL (1)
  243. SSTATE_INTERNED_IMMORTAL (2)
  244. If interned != SSTATE_NOT_INTERNED, the two references from the
  245. dictionary to this object are *not* counted in ob_refcnt.
  246. */
  247. unsigned int interned:2;
  248. /* Character size:
  249. - PyUnicode_WCHAR_KIND (0):
  250. * character type = wchar_t (16 or 32 bits, depending on the
  251. platform)
  252. - PyUnicode_1BYTE_KIND (1):
  253. * character type = Py_UCS1 (8 bits, unsigned)
  254. * all characters are in the range U+0000-U+00FF (latin1)
  255. * if ascii is set, all characters are in the range U+0000-U+007F
  256. (ASCII), otherwise at least one character is in the range
  257. U+0080-U+00FF
  258. - PyUnicode_2BYTE_KIND (2):
  259. * character type = Py_UCS2 (16 bits, unsigned)
  260. * all characters are in the range U+0000-U+FFFF (BMP)
  261. * at least one character is in the range U+0100-U+FFFF
  262. - PyUnicode_4BYTE_KIND (4):
  263. * character type = Py_UCS4 (32 bits, unsigned)
  264. * all characters are in the range U+0000-U+10FFFF
  265. * at least one character is in the range U+10000-U+10FFFF
  266. */
  267. unsigned int kind:3;
  268. /* Compact is with respect to the allocation scheme. Compact unicode
  269. objects only require one memory block while non-compact objects use
  270. one block for the PyUnicodeObject struct and another for its data
  271. buffer. */
  272. unsigned int compact:1;
  273. /* The string only contains characters in the range U+0000-U+007F (ASCII)
  274. and the kind is PyUnicode_1BYTE_KIND. If ascii is set and compact is
  275. set, use the PyASCIIObject structure. */
  276. unsigned int ascii:1;
  277. /* The ready flag indicates whether the object layout is initialized
  278. completely. This means that this is either a compact object, or
  279. the data pointer is filled out. The bit is redundant, and helps
  280. to minimize the test in PyUnicode_IS_READY(). */
  281. unsigned int ready:1;
  282. /* Padding to ensure that PyUnicode_DATA() is always aligned to
  283. 4 bytes (see issue #19537 on m68k). */
  284. unsigned int :24;
  285. } state;
  286. wchar_t *wstr; /* wchar_t representation (null-terminated) */
  287. } PyASCIIObject;
  288. /* Non-ASCII strings allocated through PyUnicode_New use the
  289. PyCompactUnicodeObject structure. state.compact is set, and the data
  290. immediately follow the structure. */
  291. typedef struct {
  292. PyASCIIObject _base;
  293. Py_ssize_t utf8_length; /* Number of bytes in utf8, excluding the
  294. * terminating \0. */
  295. char *utf8; /* UTF-8 representation (null-terminated) */
  296. Py_ssize_t wstr_length; /* Number of code points in wstr, possible
  297. * surrogates count as two code points. */
  298. } PyCompactUnicodeObject;
  299. /* Strings allocated through PyUnicode_FromUnicode(NULL, len) use the
  300. PyUnicodeObject structure. The actual string data is initially in the wstr
  301. block, and copied into the data block using _PyUnicode_Ready. */
  302. typedef struct {
  303. PyCompactUnicodeObject _base;
  304. union {
  305. void *any;
  306. Py_UCS1 *latin1;
  307. Py_UCS2 *ucs2;
  308. Py_UCS4 *ucs4;
  309. } data; /* Canonical, smallest-form Unicode buffer */
  310. } PyUnicodeObject;
  311. #endif
  312. PyAPI_DATA(PyTypeObject) PyUnicode_Type;
  313. PyAPI_DATA(PyTypeObject) PyUnicodeIter_Type;
  314. #define PyUnicode_Check(op) \
  315. PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS)
  316. #define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type)
  317. /* Fast access macros */
  318. #ifndef Py_LIMITED_API
  319. #define PyUnicode_WSTR_LENGTH(op) \
  320. (PyUnicode_IS_COMPACT_ASCII(op) ? \
  321. ((PyASCIIObject*)op)->length : \
  322. ((PyCompactUnicodeObject*)op)->wstr_length)
  323. /* Returns the deprecated Py_UNICODE representation's size in code units
  324. (this includes surrogate pairs as 2 units).
  325. If the Py_UNICODE representation is not available, it will be computed
  326. on request. Use PyUnicode_GET_LENGTH() for the length in code points. */
  327. #define PyUnicode_GET_SIZE(op) \
  328. (assert(PyUnicode_Check(op)), \
  329. (((PyASCIIObject *)(op))->wstr) ? \
  330. PyUnicode_WSTR_LENGTH(op) : \
  331. ((void)PyUnicode_AsUnicode((PyObject *)(op)), \
  332. assert(((PyASCIIObject *)(op))->wstr), \
  333. PyUnicode_WSTR_LENGTH(op)))
  334. #define PyUnicode_GET_DATA_SIZE(op) \
  335. (PyUnicode_GET_SIZE(op) * Py_UNICODE_SIZE)
  336. /* Alias for PyUnicode_AsUnicode(). This will create a wchar_t/Py_UNICODE
  337. representation on demand. Using this macro is very inefficient now,
  338. try to port your code to use the new PyUnicode_*BYTE_DATA() macros or
  339. use PyUnicode_WRITE() and PyUnicode_READ(). */
  340. #define PyUnicode_AS_UNICODE(op) \
  341. (assert(PyUnicode_Check(op)), \
  342. (((PyASCIIObject *)(op))->wstr) ? (((PyASCIIObject *)(op))->wstr) : \
  343. PyUnicode_AsUnicode((PyObject *)(op)))
  344. #define PyUnicode_AS_DATA(op) \
  345. ((const char *)(PyUnicode_AS_UNICODE(op)))
  346. /* --- Flexible String Representation Helper Macros (PEP 393) -------------- */
  347. /* Values for PyASCIIObject.state: */
  348. /* Interning state. */
  349. #define SSTATE_NOT_INTERNED 0
  350. #define SSTATE_INTERNED_MORTAL 1
  351. #define SSTATE_INTERNED_IMMORTAL 2
  352. /* Return true if the string contains only ASCII characters, or 0 if not. The
  353. string may be compact (PyUnicode_IS_COMPACT_ASCII) or not, but must be
  354. ready. */
  355. #define PyUnicode_IS_ASCII(op) \
  356. (assert(PyUnicode_Check(op)), \
  357. assert(PyUnicode_IS_READY(op)), \
  358. ((PyASCIIObject*)op)->state.ascii)
  359. /* Return true if the string is compact or 0 if not.
  360. No type checks or Ready calls are performed. */
  361. #define PyUnicode_IS_COMPACT(op) \
  362. (((PyASCIIObject*)(op))->state.compact)
  363. /* Return true if the string is a compact ASCII string (use PyASCIIObject
  364. structure), or 0 if not. No type checks or Ready calls are performed. */
  365. #define PyUnicode_IS_COMPACT_ASCII(op) \
  366. (((PyASCIIObject*)op)->state.ascii && PyUnicode_IS_COMPACT(op))
  367. enum PyUnicode_Kind {
  368. /* String contains only wstr byte characters. This is only possible
  369. when the string was created with a legacy API and _PyUnicode_Ready()
  370. has not been called yet. */
  371. PyUnicode_WCHAR_KIND = 0,
  372. /* Return values of the PyUnicode_KIND() macro: */
  373. PyUnicode_1BYTE_KIND = 1,
  374. PyUnicode_2BYTE_KIND = 2,
  375. PyUnicode_4BYTE_KIND = 4
  376. };
  377. /* Return pointers to the canonical representation cast to unsigned char,
  378. Py_UCS2, or Py_UCS4 for direct character access.
  379. No checks are performed, use PyUnicode_KIND() before to ensure
  380. these will work correctly. */
  381. #define PyUnicode_1BYTE_DATA(op) ((Py_UCS1*)PyUnicode_DATA(op))
  382. #define PyUnicode_2BYTE_DATA(op) ((Py_UCS2*)PyUnicode_DATA(op))
  383. #define PyUnicode_4BYTE_DATA(op) ((Py_UCS4*)PyUnicode_DATA(op))
  384. /* Return one of the PyUnicode_*_KIND values defined above. */
  385. #define PyUnicode_KIND(op) \
  386. (assert(PyUnicode_Check(op)), \
  387. assert(PyUnicode_IS_READY(op)), \
  388. ((PyASCIIObject *)(op))->state.kind)
  389. /* Return a void pointer to the raw unicode buffer. */
  390. #define _PyUnicode_COMPACT_DATA(op) \
  391. (PyUnicode_IS_ASCII(op) ? \
  392. ((void*)((PyASCIIObject*)(op) + 1)) : \
  393. ((void*)((PyCompactUnicodeObject*)(op) + 1)))
  394. #define _PyUnicode_NONCOMPACT_DATA(op) \
  395. (assert(((PyUnicodeObject*)(op))->data.any), \
  396. ((((PyUnicodeObject *)(op))->data.any)))
  397. #define PyUnicode_DATA(op) \
  398. (assert(PyUnicode_Check(op)), \
  399. PyUnicode_IS_COMPACT(op) ? _PyUnicode_COMPACT_DATA(op) : \
  400. _PyUnicode_NONCOMPACT_DATA(op))
  401. /* In the access macros below, "kind" may be evaluated more than once.
  402. All other macro parameters are evaluated exactly once, so it is safe
  403. to put side effects into them (such as increasing the index). */
  404. /* Write into the canonical representation, this macro does not do any sanity
  405. checks and is intended for usage in loops. The caller should cache the
  406. kind and data pointers obtained from other macro calls.
  407. index is the index in the string (starts at 0) and value is the new
  408. code point value which should be written to that location. */
  409. #define PyUnicode_WRITE(kind, data, index, value) \
  410. do { \
  411. switch ((kind)) { \
  412. case PyUnicode_1BYTE_KIND: { \
  413. ((Py_UCS1 *)(data))[(index)] = (Py_UCS1)(value); \
  414. break; \
  415. } \
  416. case PyUnicode_2BYTE_KIND: { \
  417. ((Py_UCS2 *)(data))[(index)] = (Py_UCS2)(value); \
  418. break; \
  419. } \
  420. default: { \
  421. assert((kind) == PyUnicode_4BYTE_KIND); \
  422. ((Py_UCS4 *)(data))[(index)] = (Py_UCS4)(value); \
  423. } \
  424. } \
  425. } while (0)
  426. /* Read a code point from the string's canonical representation. No checks
  427. or ready calls are performed. */
  428. #define PyUnicode_READ(kind, data, index) \
  429. ((Py_UCS4) \
  430. ((kind) == PyUnicode_1BYTE_KIND ? \
  431. ((const Py_UCS1 *)(data))[(index)] : \
  432. ((kind) == PyUnicode_2BYTE_KIND ? \
  433. ((const Py_UCS2 *)(data))[(index)] : \
  434. ((const Py_UCS4 *)(data))[(index)] \
  435. ) \
  436. ))
  437. /* PyUnicode_READ_CHAR() is less efficient than PyUnicode_READ() because it
  438. calls PyUnicode_KIND() and might call it twice. For single reads, use
  439. PyUnicode_READ_CHAR, for multiple consecutive reads callers should
  440. cache kind and use PyUnicode_READ instead. */
  441. #define PyUnicode_READ_CHAR(unicode, index) \
  442. (assert(PyUnicode_Check(unicode)), \
  443. assert(PyUnicode_IS_READY(unicode)), \
  444. (Py_UCS4) \
  445. (PyUnicode_KIND((unicode)) == PyUnicode_1BYTE_KIND ? \
  446. ((const Py_UCS1 *)(PyUnicode_DATA((unicode))))[(index)] : \
  447. (PyUnicode_KIND((unicode)) == PyUnicode_2BYTE_KIND ? \
  448. ((const Py_UCS2 *)(PyUnicode_DATA((unicode))))[(index)] : \
  449. ((const Py_UCS4 *)(PyUnicode_DATA((unicode))))[(index)] \
  450. ) \
  451. ))
  452. /* Returns the length of the unicode string. The caller has to make sure that
  453. the string has it's canonical representation set before calling
  454. this macro. Call PyUnicode_(FAST_)Ready to ensure that. */
  455. #define PyUnicode_GET_LENGTH(op) \
  456. (assert(PyUnicode_Check(op)), \
  457. assert(PyUnicode_IS_READY(op)), \
  458. ((PyASCIIObject *)(op))->length)
  459. /* Fast check to determine whether an object is ready. Equivalent to
  460. PyUnicode_IS_COMPACT(op) || ((PyUnicodeObject*)(op))->data.any) */
  461. #define PyUnicode_IS_READY(op) (((PyASCIIObject*)op)->state.ready)
  462. /* PyUnicode_READY() does less work than _PyUnicode_Ready() in the best
  463. case. If the canonical representation is not yet set, it will still call
  464. _PyUnicode_Ready().
  465. Returns 0 on success and -1 on errors. */
  466. #define PyUnicode_READY(op) \
  467. (assert(PyUnicode_Check(op)), \
  468. (PyUnicode_IS_READY(op) ? \
  469. 0 : _PyUnicode_Ready((PyObject *)(op))))
  470. /* Return a maximum character value which is suitable for creating another
  471. string based on op. This is always an approximation but more efficient
  472. than iterating over the string. */
  473. #define PyUnicode_MAX_CHAR_VALUE(op) \
  474. (assert(PyUnicode_IS_READY(op)), \
  475. (PyUnicode_IS_ASCII(op) ? \
  476. (0x7f) : \
  477. (PyUnicode_KIND(op) == PyUnicode_1BYTE_KIND ? \
  478. (0xffU) : \
  479. (PyUnicode_KIND(op) == PyUnicode_2BYTE_KIND ? \
  480. (0xffffU) : \
  481. (0x10ffffU)))))
  482. #endif
  483. /* --- Constants ---------------------------------------------------------- */
  484. /* This Unicode character will be used as replacement character during
  485. decoding if the errors argument is set to "replace". Note: the
  486. Unicode character U+FFFD is the official REPLACEMENT CHARACTER in
  487. Unicode 3.0. */
  488. #define Py_UNICODE_REPLACEMENT_CHARACTER ((Py_UCS4) 0xFFFD)
  489. /* === Public API ========================================================= */
  490. /* --- Plain Py_UNICODE --------------------------------------------------- */
  491. /* With PEP 393, this is the recommended way to allocate a new unicode object.
  492. This function will allocate the object and its buffer in a single memory
  493. block. Objects created using this function are not resizable. */
  494. #ifndef Py_LIMITED_API
  495. PyAPI_FUNC(PyObject*) PyUnicode_New(
  496. Py_ssize_t size, /* Number of code points in the new string */
  497. Py_UCS4 maxchar /* maximum code point value in the string */
  498. );
  499. #endif
  500. /* Initializes the canonical string representation from the deprecated
  501. wstr/Py_UNICODE representation. This function is used to convert Unicode
  502. objects which were created using the old API to the new flexible format
  503. introduced with PEP 393.
  504. Don't call this function directly, use the public PyUnicode_READY() macro
  505. instead. */
  506. #ifndef Py_LIMITED_API
  507. PyAPI_FUNC(int) _PyUnicode_Ready(
  508. PyObject *unicode /* Unicode object */
  509. );
  510. #endif
  511. /* Get a copy of a Unicode string. */
  512. #ifndef Py_LIMITED_API
  513. PyAPI_FUNC(PyObject*) _PyUnicode_Copy(
  514. PyObject *unicode
  515. );
  516. #endif
  517. /* Copy character from one unicode object into another, this function performs
  518. character conversion when necessary and falls back to memcpy() if possible.
  519. Fail if to is too small (smaller than *how_many* or smaller than
  520. len(from)-from_start), or if kind(from[from_start:from_start+how_many]) >
  521. kind(to), or if *to* has more than 1 reference.
  522. Return the number of written character, or return -1 and raise an exception
  523. on error.
  524. Pseudo-code:
  525. how_many = min(how_many, len(from) - from_start)
  526. to[to_start:to_start+how_many] = from[from_start:from_start+how_many]
  527. return how_many
  528. Note: The function doesn't write a terminating null character.
  529. */
  530. #ifndef Py_LIMITED_API
  531. PyAPI_FUNC(Py_ssize_t) PyUnicode_CopyCharacters(
  532. PyObject *to,
  533. Py_ssize_t to_start,
  534. PyObject *from,
  535. Py_ssize_t from_start,
  536. Py_ssize_t how_many
  537. );
  538. /* Unsafe version of PyUnicode_CopyCharacters(): don't check arguments and so
  539. may crash if parameters are invalid (e.g. if the output string
  540. is too short). */
  541. PyAPI_FUNC(void) _PyUnicode_FastCopyCharacters(
  542. PyObject *to,
  543. Py_ssize_t to_start,
  544. PyObject *from,
  545. Py_ssize_t from_start,
  546. Py_ssize_t how_many
  547. );
  548. #endif
  549. #ifndef Py_LIMITED_API
  550. /* Fill a string with a character: write fill_char into
  551. unicode[start:start+length].
  552. Fail if fill_char is bigger than the string maximum character, or if the
  553. string has more than 1 reference.
  554. Return the number of written character, or return -1 and raise an exception
  555. on error. */
  556. PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
  557. PyObject *unicode,
  558. Py_ssize_t start,
  559. Py_ssize_t length,
  560. Py_UCS4 fill_char
  561. );
  562. /* Unsafe version of PyUnicode_Fill(): don't check arguments and so may crash
  563. if parameters are invalid (e.g. if length is longer than the string). */
  564. PyAPI_FUNC(void) _PyUnicode_FastFill(
  565. PyObject *unicode,
  566. Py_ssize_t start,
  567. Py_ssize_t length,
  568. Py_UCS4 fill_char
  569. );
  570. #endif
  571. /* Create a Unicode Object from the Py_UNICODE buffer u of the given
  572. size.
  573. u may be NULL which causes the contents to be undefined. It is the
  574. user's responsibility to fill in the needed data afterwards. Note
  575. that modifying the Unicode object contents after construction is
  576. only allowed if u was set to NULL.
  577. The buffer is copied into the new object. */
  578. #ifndef Py_LIMITED_API
  579. PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
  580. const Py_UNICODE *u, /* Unicode buffer */
  581. Py_ssize_t size /* size of buffer */
  582. );
  583. #endif
  584. /* Similar to PyUnicode_FromUnicode(), but u points to UTF-8 encoded bytes */
  585. PyAPI_FUNC(PyObject*) PyUnicode_FromStringAndSize(
  586. const char *u, /* UTF-8 encoded string */
  587. Py_ssize_t size /* size of buffer */
  588. );
  589. /* Similar to PyUnicode_FromUnicode(), but u points to null-terminated
  590. UTF-8 encoded bytes. The size is determined with strlen(). */
  591. PyAPI_FUNC(PyObject*) PyUnicode_FromString(
  592. const char *u /* UTF-8 encoded string */
  593. );
  594. #ifndef Py_LIMITED_API
  595. /* Create a new string from a buffer of Py_UCS1, Py_UCS2 or Py_UCS4 characters.
  596. Scan the string to find the maximum character. */
  597. PyAPI_FUNC(PyObject*) PyUnicode_FromKindAndData(
  598. int kind,
  599. const void *buffer,
  600. Py_ssize_t size);
  601. /* Create a new string from a buffer of ASCII characters.
  602. WARNING: Don't check if the string contains any non-ASCII character. */
  603. PyAPI_FUNC(PyObject*) _PyUnicode_FromASCII(
  604. const char *buffer,
  605. Py_ssize_t size);
  606. #endif
  607. PyAPI_FUNC(PyObject*) PyUnicode_Substring(
  608. PyObject *str,
  609. Py_ssize_t start,
  610. Py_ssize_t end);
  611. #ifndef Py_LIMITED_API
  612. /* Compute the maximum character of the substring unicode[start:end].
  613. Return 127 for an empty string. */
  614. PyAPI_FUNC(Py_UCS4) _PyUnicode_FindMaxChar (
  615. PyObject *unicode,
  616. Py_ssize_t start,
  617. Py_ssize_t end);
  618. #endif
  619. /* Copy the string into a UCS4 buffer including the null character if copy_null
  620. is set. Return NULL and raise an exception on error. Raise a ValueError if
  621. the buffer is smaller than the string. Return buffer on success.
  622. buflen is the length of the buffer in (Py_UCS4) characters. */
  623. PyAPI_FUNC(Py_UCS4*) PyUnicode_AsUCS4(
  624. PyObject *unicode,
  625. Py_UCS4* buffer,
  626. Py_ssize_t buflen,
  627. int copy_null);
  628. /* Copy the string into a UCS4 buffer. A new buffer is allocated using
  629. * PyMem_Malloc; if this fails, NULL is returned with a memory error
  630. exception set. */
  631. PyAPI_FUNC(Py_UCS4*) PyUnicode_AsUCS4Copy(PyObject *unicode);
  632. /* Return a read-only pointer to the Unicode object's internal
  633. Py_UNICODE buffer.
  634. If the wchar_t/Py_UNICODE representation is not yet available, this
  635. function will calculate it. */
  636. #ifndef Py_LIMITED_API
  637. PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
  638. PyObject *unicode /* Unicode object */
  639. );
  640. #endif
  641. /* Return a read-only pointer to the Unicode object's internal
  642. Py_UNICODE buffer and save the length at size.
  643. If the wchar_t/Py_UNICODE representation is not yet available, this
  644. function will calculate it. */
  645. #ifndef Py_LIMITED_API
  646. PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicodeAndSize(
  647. PyObject *unicode, /* Unicode object */
  648. Py_ssize_t *size /* location where to save the length */
  649. );
  650. #endif
  651. /* Get the length of the Unicode object. */
  652. PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
  653. PyObject *unicode
  654. );
  655. /* Get the number of Py_UNICODE units in the
  656. string representation. */
  657. PyAPI_FUNC(Py_ssize_t) PyUnicode_GetSize(
  658. PyObject *unicode /* Unicode object */
  659. );
  660. /* Read a character from the string. */
  661. PyAPI_FUNC(Py_UCS4) PyUnicode_ReadChar(
  662. PyObject *unicode,
  663. Py_ssize_t index
  664. );
  665. /* Write a character to the string. The string must have been created through
  666. PyUnicode_New, must not be shared, and must not have been hashed yet.
  667. Return 0 on success, -1 on error. */
  668. PyAPI_FUNC(int) PyUnicode_WriteChar(
  669. PyObject *unicode,
  670. Py_ssize_t index,
  671. Py_UCS4 character
  672. );
  673. #ifndef Py_LIMITED_API
  674. /* Get the maximum ordinal for a Unicode character. */
  675. PyAPI_FUNC(Py_UNICODE) PyUnicode_GetMax(void);
  676. #endif
  677. /* Resize a Unicode object. The length is the number of characters, except
  678. if the kind of the string is PyUnicode_WCHAR_KIND: in this case, the length
  679. is the number of Py_UNICODE characters.
  680. *unicode is modified to point to the new (resized) object and 0
  681. returned on success.
  682. Try to resize the string in place (which is usually faster than allocating
  683. a new string and copy characters), or create a new string.
  684. Error handling is implemented as follows: an exception is set, -1
  685. is returned and *unicode left untouched.
  686. WARNING: The function doesn't check string content, the result may not be a
  687. string in canonical representation. */
  688. PyAPI_FUNC(int) PyUnicode_Resize(
  689. PyObject **unicode, /* Pointer to the Unicode object */
  690. Py_ssize_t length /* New length */
  691. );
  692. /* Decode obj to a Unicode object.
  693. bytes, bytearray and other bytes-like objects are decoded according to the
  694. given encoding and error handler. The encoding and error handler can be
  695. NULL to have the interface use UTF-8 and "strict".
  696. All other objects (including Unicode objects) raise an exception.
  697. The API returns NULL in case of an error. The caller is responsible
  698. for decref'ing the returned objects.
  699. */
  700. PyAPI_FUNC(PyObject*) PyUnicode_FromEncodedObject(
  701. PyObject *obj, /* Object */
  702. const char *encoding, /* encoding */
  703. const char *errors /* error handling */
  704. );
  705. /* Copy an instance of a Unicode subtype to a new true Unicode object if
  706. necessary. If obj is already a true Unicode object (not a subtype), return
  707. the reference with *incremented* refcount.
  708. The API returns NULL in case of an error. The caller is responsible
  709. for decref'ing the returned objects.
  710. */
  711. PyAPI_FUNC(PyObject*) PyUnicode_FromObject(
  712. PyObject *obj /* Object */
  713. );
  714. PyAPI_FUNC(PyObject *) PyUnicode_FromFormatV(
  715. const char *format, /* ASCII-encoded string */
  716. va_list vargs
  717. );
  718. PyAPI_FUNC(PyObject *) PyUnicode_FromFormat(
  719. const char *format, /* ASCII-encoded string */
  720. ...
  721. );
  722. #ifndef Py_LIMITED_API
  723. typedef struct {
  724. PyObject *buffer;
  725. void *data;
  726. enum PyUnicode_Kind kind;
  727. Py_UCS4 maxchar;
  728. Py_ssize_t size;
  729. Py_ssize_t pos;
  730. /* minimum number of allocated characters (default: 0) */
  731. Py_ssize_t min_length;
  732. /* minimum character (default: 127, ASCII) */
  733. Py_UCS4 min_char;
  734. /* If non-zero, overallocate the buffer by 25% (default: 0). */
  735. unsigned char overallocate;
  736. /* If readonly is 1, buffer is a shared string (cannot be modified)
  737. and size is set to 0. */
  738. unsigned char readonly;
  739. } _PyUnicodeWriter ;
  740. /* Initialize a Unicode writer.
  741. *
  742. * By default, the minimum buffer size is 0 character and overallocation is
  743. * disabled. Set min_length, min_char and overallocate attributes to control
  744. * the allocation of the buffer. */
  745. PyAPI_FUNC(void)
  746. _PyUnicodeWriter_Init(_PyUnicodeWriter *writer);
  747. /* Prepare the buffer to write 'length' characters
  748. with the specified maximum character.
  749. Return 0 on success, raise an exception and return -1 on error. */
  750. #define _PyUnicodeWriter_Prepare(WRITER, LENGTH, MAXCHAR) \
  751. (((MAXCHAR) <= (WRITER)->maxchar \
  752. && (LENGTH) <= (WRITER)->size - (WRITER)->pos) \
  753. ? 0 \
  754. : (((LENGTH) == 0) \
  755. ? 0 \
  756. : _PyUnicodeWriter_PrepareInternal((WRITER), (LENGTH), (MAXCHAR))))
  757. /* Don't call this function directly, use the _PyUnicodeWriter_Prepare() macro
  758. instead. */
  759. PyAPI_FUNC(int)
  760. _PyUnicodeWriter_PrepareInternal(_PyUnicodeWriter *writer,
  761. Py_ssize_t length, Py_UCS4 maxchar);
  762. /* Append a Unicode character.
  763. Return 0 on success, raise an exception and return -1 on error. */
  764. PyAPI_FUNC(int)
  765. _PyUnicodeWriter_WriteChar(_PyUnicodeWriter *writer,
  766. Py_UCS4 ch
  767. );
  768. /* Append a Unicode string.
  769. Return 0 on success, raise an exception and return -1 on error. */
  770. PyAPI_FUNC(int)
  771. _PyUnicodeWriter_WriteStr(_PyUnicodeWriter *writer,
  772. PyObject *str /* Unicode string */
  773. );
  774. /* Append a substring of a Unicode string.
  775. Return 0 on success, raise an exception and return -1 on error. */
  776. PyAPI_FUNC(int)
  777. _PyUnicodeWriter_WriteSubstring(_PyUnicodeWriter *writer,
  778. PyObject *str, /* Unicode string */
  779. Py_ssize_t start,
  780. Py_ssize_t end
  781. );
  782. /* Append an ASCII-encoded byte string.
  783. Return 0 on success, raise an exception and return -1 on error. */
  784. PyAPI_FUNC(int)
  785. _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,
  786. const char *str, /* ASCII-encoded byte string */
  787. Py_ssize_t len /* number of bytes, or -1 if unknown */
  788. );
  789. /* Append a latin1-encoded byte string.
  790. Return 0 on success, raise an exception and return -1 on error. */
  791. PyAPI_FUNC(int)
  792. _PyUnicodeWriter_WriteLatin1String(_PyUnicodeWriter *writer,
  793. const char *str, /* latin1-encoded byte string */
  794. Py_ssize_t len /* length in bytes */
  795. );
  796. /* Get the value of the writer as a Unicode string. Clear the
  797. buffer of the writer. Raise an exception and return NULL
  798. on error. */
  799. PyAPI_FUNC(PyObject *)
  800. _PyUnicodeWriter_Finish(_PyUnicodeWriter *writer);
  801. /* Deallocate memory of a writer (clear its internal buffer). */
  802. PyAPI_FUNC(void)
  803. _PyUnicodeWriter_Dealloc(_PyUnicodeWriter *writer);
  804. #endif
  805. #ifndef Py_LIMITED_API
  806. /* Format the object based on the format_spec, as defined in PEP 3101
  807. (Advanced String Formatting). */
  808. PyAPI_FUNC(int) _PyUnicode_FormatAdvancedWriter(
  809. _PyUnicodeWriter *writer,
  810. PyObject *obj,
  811. PyObject *format_spec,
  812. Py_ssize_t start,
  813. Py_ssize_t end);
  814. #endif
  815. PyAPI_FUNC(void) PyUnicode_InternInPlace(PyObject **);
  816. PyAPI_FUNC(void) PyUnicode_InternImmortal(PyObject **);
  817. PyAPI_FUNC(PyObject *) PyUnicode_InternFromString(
  818. const char *u /* UTF-8 encoded string */
  819. );
  820. #ifndef Py_LIMITED_API
  821. PyAPI_FUNC(void) _Py_ReleaseInternedUnicodeStrings(void);
  822. #endif
  823. /* Use only if you know it's a string */
  824. #define PyUnicode_CHECK_INTERNED(op) \
  825. (((PyASCIIObject *)(op))->state.interned)
  826. /* --- wchar_t support for platforms which support it --------------------- */
  827. #ifdef HAVE_WCHAR_H
  828. /* Create a Unicode Object from the wchar_t buffer w of the given
  829. size.
  830. The buffer is copied into the new object. */
  831. PyAPI_FUNC(PyObject*) PyUnicode_FromWideChar(
  832. const wchar_t *w, /* wchar_t buffer */
  833. Py_ssize_t size /* size of buffer */
  834. );
  835. /* Copies the Unicode Object contents into the wchar_t buffer w. At
  836. most size wchar_t characters are copied.
  837. Note that the resulting wchar_t string may or may not be
  838. 0-terminated. It is the responsibility of the caller to make sure
  839. that the wchar_t string is 0-terminated in case this is required by
  840. the application.
  841. Returns the number of wchar_t characters copied (excluding a
  842. possibly trailing 0-termination character) or -1 in case of an
  843. error. */
  844. PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
  845. PyObject *unicode, /* Unicode object */
  846. wchar_t *w, /* wchar_t buffer */
  847. Py_ssize_t size /* size of buffer */
  848. );
  849. /* Convert the Unicode object to a wide character string. The output string
  850. always ends with a nul character. If size is not NULL, write the number of
  851. wide characters (excluding the null character) into *size.
  852. Returns a buffer allocated by PyMem_Malloc() (use PyMem_Free() to free it)
  853. on success. On error, returns NULL, *size is undefined and raises a
  854. MemoryError. */
  855. PyAPI_FUNC(wchar_t*) PyUnicode_AsWideCharString(
  856. PyObject *unicode, /* Unicode object */
  857. Py_ssize_t *size /* number of characters of the result */
  858. );
  859. #ifndef Py_LIMITED_API
  860. PyAPI_FUNC(void*) _PyUnicode_AsKind(PyObject *s, unsigned int kind);
  861. #endif
  862. #endif
  863. /* --- Unicode ordinals --------------------------------------------------- */
  864. /* Create a Unicode Object from the given Unicode code point ordinal.
  865. The ordinal must be in range(0x110000). A ValueError is
  866. raised in case it is not.
  867. */
  868. PyAPI_FUNC(PyObject*) PyUnicode_FromOrdinal(int ordinal);
  869. /* --- Free-list management ----------------------------------------------- */
  870. /* Clear the free list used by the Unicode implementation.
  871. This can be used to release memory used for objects on the free
  872. list back to the Python memory allocator.
  873. */
  874. PyAPI_FUNC(int) PyUnicode_ClearFreeList(void);
  875. /* === Builtin Codecs =====================================================
  876. Many of these APIs take two arguments encoding and errors. These
  877. parameters encoding and errors have the same semantics as the ones
  878. of the builtin str() API.
  879. Setting encoding to NULL causes the default encoding (UTF-8) to be used.
  880. Error handling is set by errors which may also be set to NULL
  881. meaning to use the default handling defined for the codec. Default
  882. error handling for all builtin codecs is "strict" (ValueErrors are
  883. raised).
  884. The codecs all use a similar interface. Only deviation from the
  885. generic ones are documented.
  886. */
  887. /* --- Manage the default encoding ---------------------------------------- */
  888. /* Returns a pointer to the default encoding (UTF-8) of the
  889. Unicode object unicode and the size of the encoded representation
  890. in bytes stored in *size.
  891. In case of an error, no *size is set.
  892. This function caches the UTF-8 encoded string in the unicodeobject
  893. and subsequent calls will return the same string. The memory is released
  894. when the unicodeobject is deallocated.
  895. _PyUnicode_AsStringAndSize is a #define for PyUnicode_AsUTF8AndSize to
  896. support the previous internal function with the same behaviour.
  897. *** This API is for interpreter INTERNAL USE ONLY and will likely
  898. *** be removed or changed in the future.
  899. *** If you need to access the Unicode object as UTF-8 bytes string,
  900. *** please use PyUnicode_AsUTF8String() instead.
  901. */
  902. #ifndef Py_LIMITED_API
  903. PyAPI_FUNC(char *) PyUnicode_AsUTF8AndSize(
  904. PyObject *unicode,
  905. Py_ssize_t *size);
  906. #define _PyUnicode_AsStringAndSize PyUnicode_AsUTF8AndSize
  907. #endif
  908. /* Returns a pointer to the default encoding (UTF-8) of the
  909. Unicode object unicode.
  910. Like PyUnicode_AsUTF8AndSize(), this also caches the UTF-8 representation
  911. in the unicodeobject.
  912. _PyUnicode_AsString is a #define for PyUnicode_AsUTF8 to
  913. support the previous internal function with the same behaviour.
  914. Use of this API is DEPRECATED since no size information can be
  915. extracted from the returned data.
  916. *** This API is for interpreter INTERNAL USE ONLY and will likely
  917. *** be removed or changed for Python 3.1.
  918. *** If you need to access the Unicode object as UTF-8 bytes string,
  919. *** please use PyUnicode_AsUTF8String() instead.
  920. */
  921. #ifndef Py_LIMITED_API
  922. PyAPI_FUNC(char *) PyUnicode_AsUTF8(PyObject *unicode);
  923. #define _PyUnicode_AsString PyUnicode_AsUTF8
  924. #endif
  925. /* Returns "utf-8". */
  926. PyAPI_FUNC(const char*) PyUnicode_GetDefaultEncoding(void);
  927. /* --- Generic Codecs ----------------------------------------------------- */
  928. /* Create a Unicode object by decoding the encoded string s of the
  929. given size. */
  930. PyAPI_FUNC(PyObject*) PyUnicode_Decode(
  931. const char *s, /* encoded string */
  932. Py_ssize_t size, /* size of buffer */
  933. const char *encoding, /* encoding */
  934. const char *errors /* error handling */
  935. );
  936. /* Decode a Unicode object unicode and return the result as Python
  937. object. */
  938. PyAPI_FUNC(PyObject*) PyUnicode_AsDecodedObject(
  939. PyObject *unicode, /* Unicode object */
  940. const char *encoding, /* encoding */
  941. const char *errors /* error handling */
  942. );
  943. /* Decode a Unicode object unicode and return the result as Unicode
  944. object. */
  945. PyAPI_FUNC(PyObject*) PyUnicode_AsDecodedUnicode(
  946. PyObject *unicode, /* Unicode object */
  947. const char *encoding, /* encoding */
  948. const char *errors /* error handling */
  949. );
  950. /* Encodes a Py_UNICODE buffer of the given size and returns a
  951. Python string object. */
  952. #ifndef Py_LIMITED_API
  953. PyAPI_FUNC(PyObject*) PyUnicode_Encode(
  954. const Py_UNICODE *s, /* Unicode char buffer */
  955. Py_ssize_t size, /* number of Py_UNICODE chars to encode */
  956. const char *encoding, /* encoding */
  957. const char *errors /* error handling */
  958. );
  959. #endif
  960. /* Encodes a Unicode object and returns the result as Python
  961. object. */
  962. PyAPI_FUNC(PyObject*) PyUnicode_AsEncodedObject(
  963. PyObject *unicode, /* Unicode object */
  964. const char *encoding, /* encoding */
  965. const char *errors /* error handling */
  966. );
  967. /* Encodes a Unicode object and returns the result as Python string
  968. object. */
  969. PyAPI_FUNC(PyObject*) PyUnicode_AsEncodedString(
  970. PyObject *unicode, /* Unicode object */
  971. const char *encoding, /* encoding */
  972. const char *errors /* error handling */
  973. );
  974. /* Encodes a Unicode object and returns the result as Unicode
  975. object. */
  976. PyAPI_FUNC(PyObject*) PyUnicode_AsEncodedUnicode(
  977. PyObject *unicode, /* Unicode object */
  978. const char *encoding, /* encoding */
  979. const char *errors /* error handling */
  980. );
  981. /* Build an encoding map. */
  982. PyAPI_FUNC(PyObject*) PyUnicode_BuildEncodingMap(
  983. PyObject* string /* 256 character map */
  984. );
  985. /* --- UTF-7 Codecs ------------------------------------------------------- */
  986. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF7(
  987. const char *string, /* UTF-7 encoded string */
  988. Py_ssize_t length, /* size of string */
  989. const char *errors /* error handling */
  990. );
  991. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF7Stateful(
  992. const char *string, /* UTF-7 encoded string */
  993. Py_ssize_t length, /* size of string */
  994. const char *errors, /* error handling */
  995. Py_ssize_t *consumed /* bytes consumed */
  996. );
  997. #ifndef Py_LIMITED_API
  998. PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF7(
  999. const Py_UNICODE *data, /* Unicode char buffer */
  1000. Py_ssize_t length, /* number of Py_UNICODE chars to encode */
  1001. int base64SetO, /* Encode RFC2152 Set O characters in base64 */
  1002. int base64WhiteSpace, /* Encode whitespace (sp, ht, nl, cr) in base64 */
  1003. const char *errors /* error handling */
  1004. );
  1005. PyAPI_FUNC(PyObject*) _PyUnicode_EncodeUTF7(
  1006. PyObject *unicode, /* Unicode object */
  1007. int base64SetO, /* Encode RFC2152 Set O characters in base64 */
  1008. int base64WhiteSpace, /* Encode whitespace (sp, ht, nl, cr) in base64 */
  1009. const char *errors /* error handling */
  1010. );
  1011. #endif
  1012. /* --- UTF-8 Codecs ------------------------------------------------------- */
  1013. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
  1014. const char *string, /* UTF-8 encoded string */
  1015. Py_ssize_t length, /* size of string */
  1016. const char *errors /* error handling */
  1017. );
  1018. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8Stateful(
  1019. const char *string, /* UTF-8 encoded string */
  1020. Py_ssize_t length, /* size of string */
  1021. const char *errors, /* error handling */
  1022. Py_ssize_t *consumed /* bytes consumed */
  1023. );
  1024. PyAPI_FUNC(PyObject*) PyUnicode_AsUTF8String(
  1025. PyObject *unicode /* Unicode object */
  1026. );
  1027. #ifndef Py_LIMITED_API
  1028. PyAPI_FUNC(PyObject*) _PyUnicode_AsUTF8String(
  1029. PyObject *unicode,
  1030. const char *errors);
  1031. PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF8(
  1032. const Py_UNICODE *data, /* Unicode char buffer */
  1033. Py_ssize_t length, /* number of Py_UNICODE chars to encode */
  1034. const char *errors /* error handling */
  1035. );
  1036. #endif
  1037. /* --- UTF-32 Codecs ------------------------------------------------------ */
  1038. /* Decodes length bytes from a UTF-32 encoded buffer string and returns
  1039. the corresponding Unicode object.
  1040. errors (if non-NULL) defines the error handling. It defaults
  1041. to "strict".
  1042. If byteorder is non-NULL, the decoder starts decoding using the
  1043. given byte order:
  1044. *byteorder == -1: little endian
  1045. *byteorder == 0: native order
  1046. *byteorder == 1: big endian
  1047. In native mode, the first four bytes of the stream are checked for a
  1048. BOM mark. If found, the BOM mark is analysed, the byte order
  1049. adjusted and the BOM skipped. In the other modes, no BOM mark
  1050. interpretation is done. After completion, *byteorder is set to the
  1051. current byte order at the end of input data.
  1052. If byteorder is NULL, the codec starts in native order mode.
  1053. */
  1054. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32(
  1055. const char *string, /* UTF-32 encoded string */
  1056. Py_ssize_t length, /* size of string */
  1057. const char *errors, /* error handling */
  1058. int *byteorder /* pointer to byteorder to use
  1059. 0=native;-1=LE,1=BE; updated on
  1060. exit */
  1061. );
  1062. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32Stateful(
  1063. const char *string, /* UTF-32 encoded string */
  1064. Py_ssize_t length, /* size of string */
  1065. const char *errors, /* error handling */
  1066. int *byteorder, /* pointer to byteorder to use
  1067. 0=native;-1=LE,1=BE; updated on
  1068. exit */
  1069. Py_ssize_t *consumed /* bytes consumed */
  1070. );
  1071. /* Returns a Python string using the UTF-32 encoding in native byte
  1072. order. The string always starts with a BOM mark. */
  1073. PyAPI_FUNC(PyObject*) PyUnicode_AsUTF32String(
  1074. PyObject *unicode /* Unicode object */
  1075. );
  1076. /* Returns a Python string object holding the UTF-32 encoded value of
  1077. the Unicode data.
  1078. If byteorder is not 0, output is written according to the following
  1079. byte order:
  1080. byteorder == -1: little endian
  1081. byteorder == 0: native byte order (writes a BOM mark)
  1082. byteorder == 1: big endian
  1083. If byteorder is 0, the output string will always start with the
  1084. Unicode BOM mark (U+FEFF). In the other two modes, no BOM mark is
  1085. prepended.
  1086. */
  1087. #ifndef Py_LIMITED_API
  1088. PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF32(
  1089. const Py_UNICODE *data, /* Unicode char buffer */
  1090. Py_ssize_t length, /* number of Py_UNICODE chars to encode */
  1091. const char *errors, /* error handling */
  1092. int byteorder /* byteorder to use 0=BOM+native;-1=LE,1=BE */
  1093. );
  1094. PyAPI_FUNC(PyObject*) _PyUnicode_EncodeUTF32(
  1095. PyObject *object, /* Unicode object */
  1096. const char *errors, /* error handling */
  1097. int byteorder /* byteorder to use 0=BOM+native;-1=LE,1=BE */
  1098. );
  1099. #endif
  1100. /* --- UTF-16 Codecs ------------------------------------------------------ */
  1101. /* Decodes length bytes from a UTF-16 encoded buffer string and returns
  1102. the corresponding Unicode object.
  1103. errors (if non-NULL) defines the error handling. It defaults
  1104. to "strict".
  1105. If byteorder is non-NULL, the decoder starts decoding using the
  1106. given byte order:
  1107. *byteorder == -1: little endian
  1108. *byteorder == 0: native order
  1109. *byteorder == 1: big endian
  1110. In native mode, the first two bytes of the stream are checked for a
  1111. BOM mark. If found, the BOM mark is analysed, the byte order
  1112. adjusted and the BOM skipped. In the other modes, no BOM mark
  1113. interpretation is done. After completion, *byteorder is set to the
  1114. current byte order at the end of input data.
  1115. If byteorder is NULL, the codec starts in native order mode.
  1116. */
  1117. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16(
  1118. const char *string, /* UTF-16 encoded string */
  1119. Py_ssize_t length, /* size of string */
  1120. const char *errors, /* error handling */
  1121. int *byteorder /* pointer to byteorder to use
  1122. 0=native;-1=LE,1=BE; updated on
  1123. exit */
  1124. );
  1125. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
  1126. const char *string, /* UTF-16 encoded string */
  1127. Py_ssize_t length, /* size of string */
  1128. const char *errors, /* error handling */
  1129. int *byteorder, /* pointer to byteorder to use
  1130. 0=native;-1=LE,1=BE; updated on
  1131. exit */
  1132. Py_ssize_t *consumed /* bytes consumed */
  1133. );
  1134. /* Returns a Python string using the UTF-16 encoding in native byte
  1135. order. The string always starts with a BOM mark. */
  1136. PyAPI_FUNC(PyObject*) PyUnicode_AsUTF16String(
  1137. PyObject *unicode /* Unicode object */
  1138. );
  1139. /* Returns a Python string object holding the UTF-16 encoded value of
  1140. the Unicode data.
  1141. If byteorder is not 0, output is written according to the following
  1142. byte order:
  1143. byteorder == -1: little endian
  1144. byteorder == 0: native byte order (writes a BOM mark)
  1145. byteorder == 1: big endian
  1146. If byteorder is 0, the output string will always start with the
  1147. Unicode BOM mark (U+FEFF). In the other two modes, no BOM mark is
  1148. prepended.
  1149. Note that Py_UNICODE data is being interpreted as UTF-16 reduced to
  1150. UCS-2. This trick makes it possible to add full UTF-16 capabilities
  1151. at a later point without compromising the APIs.
  1152. */
  1153. #ifndef Py_LIMITED_API
  1154. PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF16(
  1155. const Py_UNICODE *data, /* Unicode char buffer */
  1156. Py_ssize_t length, /* number of Py_UNICODE chars to encode */
  1157. const char *errors, /* error handling */
  1158. int byteorder /* byteorder to use 0=BOM+native;-1=LE,1=BE */
  1159. );
  1160. PyAPI_FUNC(PyObject*) _PyUnicode_EncodeUTF16(
  1161. PyObject* unicode, /* Unicode object */
  1162. const char *errors, /* error handling */
  1163. int byteorder /* byteorder to use 0=BOM+native;-1=LE,1=BE */
  1164. );
  1165. #endif
  1166. /* --- Unicode-Escape Codecs ---------------------------------------------- */
  1167. PyAPI_FUNC(PyObject*) PyUnicode_DecodeUnicodeEscape(
  1168. const char *string, /* Unicode-Escape encoded string */
  1169. Py_ssize_t length, /* size of string */
  1170. const char *errors /* error handling */
  1171. );
  1172. PyAPI_FUNC(PyObject*) PyUnicode_AsUnicodeEscapeString(
  1173. PyObject *unicode /* Unicode object */
  1174. );
  1175. #ifndef Py_LIMITED_API
  1176. PyAPI_FUNC(PyObject*) PyUnicode_EncodeUnicodeEscape(
  1177. const Py_UNICODE *data, /* Unicode char buffer */
  1178. Py_ssize_t length /* Number of Py_UNICODE chars to encode */
  1179. );
  1180. #endif
  1181. /* --- Raw-Unicode-Escape Codecs ------------------------------------------ */
  1182. PyAPI_FUNC(PyObject*) PyUnicode_DecodeRawUnicodeEscape(
  1183. const char *string, /* Raw-Unicode-Escape encoded string */
  1184. Py_ssize_t length, /* size of string */
  1185. const char *errors /* error handling */
  1186. );
  1187. PyAPI_FUNC(PyObject*) PyUnicode_AsRawUnicodeEscapeString(
  1188. PyObject *unicode /* Unicode object */
  1189. );
  1190. #ifndef Py_LIMITED_API
  1191. PyAPI_FUNC(PyObject*) PyUnicode_EncodeRawUnicodeEscape(
  1192. const Py_UNICODE *data, /* Unicode char buffer */
  1193. Py_ssize_t length /* Number of Py_UNICODE chars to encode */
  1194. );
  1195. #endif
  1196. /* --- Unicode Internal Codec ---------------------------------------------
  1197. Only for internal use in _codecsmodule.c */
  1198. #ifndef Py_LIMITED_API
  1199. PyObject *_PyUnicode_DecodeUnicodeInternal(
  1200. const char *string,
  1201. Py_ssize_t length,
  1202. const char *errors
  1203. );
  1204. #endif
  1205. /* --- Latin-1 Codecs -----------------------------------------------------
  1206. Note: Latin-1 corresponds to the first 256 Unicode ordinals.
  1207. */
  1208. PyAPI_FUNC(PyObject*) PyUnicode_DecodeLatin1(
  1209. const char *string, /* Latin-1 encoded string */
  1210. Py_ssize_t length, /* size of string */
  1211. const char *errors /* error handling */
  1212. );
  1213. PyAPI_FUNC(PyObject*) PyUnicode_AsLatin1String(
  1214. PyObject *unicode /* Unicode object */
  1215. );
  1216. #ifndef Py_LIMITED_API
  1217. PyAPI_FUNC(PyObject*) _PyUnicode_AsLatin1String(
  1218. PyObject* unicode,
  1219. const char* errors);
  1220. PyAPI_FUNC(PyObject*) PyUnicode_EncodeLatin1(
  1221. const Py_UNICODE *data, /* Unicode char buffer */
  1222. Py_ssize_t length, /* Number of Py_UNICODE chars to encode */
  1223. const char *errors /* error handling */
  1224. );
  1225. #endif
  1226. /* --- ASCII Codecs -------------------------------------------------------
  1227. Only 7-bit ASCII data is excepted. All other codes generate errors.
  1228. */
  1229. PyAPI_FUNC(PyObject*) PyUnicode_DecodeASCII(
  1230. const char *string, /* ASCII encoded string */
  1231. Py_ssize_t length, /* size of string */
  1232. const char *errors /* error handling */
  1233. );
  1234. PyAPI_FUNC(PyObject*) PyUnicode_AsASCIIString(
  1235. PyObject *unicode /* Unicode object */
  1236. );
  1237. #ifndef Py_LIMITED_API
  1238. PyAPI_FUNC(PyObject*) _PyUnicode_AsASCIIString(
  1239. PyObject* unicode,
  1240. const char* errors);
  1241. PyAPI_FUNC(PyObject*) PyUnicode_EncodeASCII(
  1242. const Py_UNICODE *data, /* Unicode char buffer */
  1243. Py_ssize_t length, /* Number of Py_UNICODE chars to encode */
  1244. const char *errors /* error handling */
  1245. );
  1246. #endif
  1247. /* --- Character Map Codecs -----------------------------------------------
  1248. This codec uses mappings to encode and decode characters.
  1249. Decoding mappings must map single string characters to single
  1250. Unicode characters, integers (which are then interpreted as Unicode
  1251. ordinals) or None (meaning "undefined mapping" and causing an
  1252. error).
  1253. Encoding mappings must map single Unicode characters to single
  1254. string characters, integers (which are then interpreted as Latin-1
  1255. ordinals) or None (meaning "undefined mapping" and causing an
  1256. error).
  1257. If a character lookup fails with a LookupError, the character is
  1258. copied as-is meaning that its ordinal value will be interpreted as
  1259. Unicode or Latin-1 ordinal resp. Because of this mappings only need
  1260. to contain those mappings which map characters to different code
  1261. points.
  1262. */
  1263. PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
  1264. const char *string, /* Encoded string */
  1265. Py_ssize_t length, /* size of string */
  1266. PyObject *mapping, /* character mapping
  1267. (char ordinal -> unicode ordinal) */
  1268. const char *errors /* error handling */
  1269. );
  1270. PyAPI_FUNC(PyObject*) PyUnicode_AsCharmapString(
  1271. PyObject *unicode, /* Unicode object */
  1272. PyObject *mapping /* character mapping
  1273. (unicode ordinal -> char ordinal) */
  1274. );
  1275. #ifndef Py_LIMITED_API
  1276. PyAPI_FUNC(PyObject*) PyUnicode_EncodeCharmap(
  1277. const Py_UNICODE *data, /* Unicode char buffer */
  1278. Py_ssize_t length, /* Number of Py_UNICODE chars to encode */
  1279. PyObject *mapping, /* character mapping
  1280. (unicode ordinal -> char ordinal) */
  1281. const char *errors /* error handling */
  1282. );
  1283. PyAPI_FUNC(PyObject*) _PyUnicode_EncodeCharmap(
  1284. PyObject *unicode, /* Unicode object */
  1285. PyObject *mapping, /* character mapping
  1286. (unicode ordinal -> char ordinal) */
  1287. const char *errors /* error handling */
  1288. );
  1289. #endif
  1290. /* Translate a Py_UNICODE buffer of the given length by applying a
  1291. character mapping table to it and return the resulting Unicode
  1292. object.
  1293. The mapping table must map Unicode ordinal integers to Unicode
  1294. ordinal integers or None (causing deletion of the character).
  1295. Mapping tables may be dictionaries or sequences. Unmapped character
  1296. ordinals (ones which cause a LookupError) are left untouched and
  1297. are copied as-is.
  1298. */
  1299. #ifndef Py_LIMITED_API
  1300. PyAPI_FUNC(PyObject *) PyUnicode_TranslateCharmap(
  1301. const Py_UNICODE *data, /* Unicode char buffer */
  1302. Py_ssize_t length, /* Number of Py_UNICODE chars to encode */
  1303. PyObject *table, /* Translate table */
  1304. const char *errors /* error handling */
  1305. );
  1306. #endif
  1307. #ifdef HAVE_MBCS
  1308. /* --- MBCS codecs for Windows -------------------------------------------- */
  1309. PyAPI_FUNC(PyObject*) PyUnicode_DecodeMBCS(
  1310. const char *string, /* MBCS encoded string */
  1311. Py_ssize_t length, /* size of string */
  1312. const char *errors /* error handling */
  1313. );
  1314. PyAPI_FUNC(PyObject*) PyUnicode_DecodeMBCSStateful(
  1315. const char *string, /* MBCS encoded string */
  1316. Py_ssize_t length, /* size of string */
  1317. const char *errors, /* error handling */
  1318. Py_ssize_t *consumed /* bytes consumed */
  1319. );
  1320. PyAPI_FUNC(PyObject*) PyUnicode_DecodeCodePageStateful(
  1321. int code_page, /* code page number */
  1322. const char *string, /* encoded string */
  1323. Py_ssize_t length, /* size of string */
  1324. const char *errors, /* error handling */
  1325. Py_ssize_t *consumed /* bytes consumed */
  1326. );
  1327. PyAPI_FUNC(PyObject*) PyUnicode_AsMBCSString(
  1328. PyObject *unicode /* Unicode object */
  1329. );
  1330. #ifndef Py_LIMITED_API
  1331. PyAPI_FUNC(PyObject*) PyUnicode_EncodeMBCS(
  1332. const Py_UNICODE *data, /* Unicode char buffer */
  1333. Py_ssize_t length, /* number of Py_UNICODE chars to encode */
  1334. const char *errors /* error handling */
  1335. );
  1336. #endif
  1337. PyAPI_FUNC(PyObject*) PyUnicode_EncodeCodePage(
  1338. int code_page, /* code page number */
  1339. PyObject *unicode, /* Unicode object */
  1340. const char *errors /* error handling */
  1341. );
  1342. #endif /* HAVE_MBCS */
  1343. /* --- Decimal Encoder ---------------------------------------------------- */
  1344. /* Takes a Unicode string holding a decimal value and writes it into
  1345. an output buffer using standard ASCII digit codes.
  1346. The output buffer has to provide at least length+1 bytes of storage
  1347. area. The output string is 0-terminated.
  1348. The encoder converts whitespace to ' ', decimal characters to their
  1349. corresponding ASCII digit and all other Latin-1 characters except
  1350. \0 as-is. Characters outside this range (Unicode ordinals 1-256)
  1351. are treated as errors. This includes embedded NULL bytes.
  1352. Error handling is defined by the errors argument:
  1353. NULL or "strict": raise a ValueError
  1354. "ignore": ignore the wrong characters (these are not copied to the
  1355. output buffer)
  1356. "replace": replaces illegal characters with '?'
  1357. Returns 0 on success, -1 on failure.
  1358. */
  1359. #ifndef Py_LIMITED_API
  1360. PyAPI_FUNC(int) PyUnicode_EncodeDecimal(
  1361. Py_UNICODE *s, /* Unicode buffer */
  1362. Py_ssize_t length, /* Number of Py_UNICODE chars to encode */
  1363. char *output, /* Output buffer; must have size >= length */
  1364. const char *errors /* error handling */
  1365. );
  1366. #endif
  1367. /* Transforms code points that have decimal digit property to the
  1368. corresponding ASCII digit code points.
  1369. Returns a new Unicode string on success, NULL on failure.
  1370. */
  1371. #ifndef Py_LIMITED_API
  1372. PyAPI_FUNC(PyObject*) PyUnicode_TransformDecimalToASCII(
  1373. Py_UNICODE *s, /* Unicode buffer */
  1374. Py_ssize_t length /* Number of Py_UNICODE chars to transform */
  1375. );
  1376. #endif
  1377. /* Similar to PyUnicode_TransformDecimalToASCII(), but takes a PyObject
  1378. as argument instead of a raw buffer and length. This function additionally
  1379. transforms spaces to ASCII because this is what the callers in longobject,
  1380. floatobject, and complexobject did anyways. */
  1381. #ifndef Py_LIMITED_API
  1382. PyAPI_FUNC(PyObject*) _PyUnicode_TransformDecimalAndSpaceToASCII(
  1383. PyObject *unicode /* Unicode object */
  1384. );
  1385. #endif
  1386. /* --- Locale encoding --------------------------------------------------- */
  1387. /* Decode a string from the current locale encoding. The decoder is strict if
  1388. *surrogateescape* is equal to zero, otherwise it uses the 'surrogateescape'
  1389. error handler (PEP 383) to escape undecodable bytes. If a byte sequence can
  1390. be decoded as a surrogate character and *surrogateescape* is not equal to
  1391. zero, the byte sequence is escaped using the 'surrogateescape' error handler
  1392. instead of being decoded. *str* must end with a null character but cannot
  1393. contain embedded null characters. */
  1394. PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocaleAndSize(
  1395. const char *str,
  1396. Py_ssize_t len,
  1397. const char *errors);
  1398. /* Similar to PyUnicode_DecodeLocaleAndSize(), but compute the string
  1399. length using strlen(). */
  1400. PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
  1401. const char *str,
  1402. const char *errors);
  1403. /* Encode a Unicode object to the current locale encoding. The encoder is
  1404. strict is *surrogateescape* is equal to zero, otherwise the
  1405. "surrogateescape" error handler is used. Return a bytes object. The string
  1406. cannot contain embedded null characters. */
  1407. PyAPI_FUNC(PyObject*) PyUnicode_EncodeLocale(
  1408. PyObject *unicode,
  1409. const char *errors
  1410. );
  1411. /* --- File system encoding ---------------------------------------------- */
  1412. /* ParseTuple converter: encode str objects to bytes using
  1413. PyUnicode_EncodeFSDefault(); bytes objects are output as-is. */
  1414. PyAPI_FUNC(int) PyUnicode_FSConverter(PyObject*, void*);
  1415. /* ParseTuple converter: decode bytes objects to unicode using
  1416. PyUnicode_DecodeFSDefaultAndSize(); str objects are output as-is. */
  1417. PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
  1418. /* Decode a null-terminated string using Py_FileSystemDefaultEncoding
  1419. and the "surrogateescape" error handler.
  1420. If Py_FileSystemDefaultEncoding is not set, fall back to the locale
  1421. encoding.
  1422. Use PyUnicode_DecodeFSDefaultAndSize() if the string length is known.
  1423. */
  1424. PyAPI_FUNC(PyObject*) PyUnicode_DecodeFSDefault(
  1425. const char *s /* encoded string */
  1426. );
  1427. /* Decode a string using Py_FileSystemDefaultEncoding
  1428. and the "surrogateescape" error handler.
  1429. If Py_FileSystemDefaultEncoding is not set, fall back to the locale
  1430. encoding.
  1431. */
  1432. PyAPI_FUNC(PyObject*) PyUnicode_DecodeFSDefaultAndSize(
  1433. const char *s, /* encoded string */
  1434. Py_ssize_t size /* size */
  1435. );
  1436. /* Encode a Unicode object to Py_FileSystemDefaultEncoding with the
  1437. "surrogateescape" error handler, and return bytes.
  1438. If Py_FileSystemDefaultEncoding is not set, fall back to the locale
  1439. encoding.
  1440. */
  1441. PyAPI_FUNC(PyObject*) PyUnicode_EncodeFSDefault(
  1442. PyObject *unicode
  1443. );
  1444. /* --- Methods & Slots ----------------------------------------------------
  1445. These are capable of handling Unicode objects and strings on input
  1446. (we refer to them as strings in the descriptions) and return
  1447. Unicode objects or integers as appropriate. */
  1448. /* Concat two strings giving a new Unicode string. */
  1449. PyAPI_FUNC(PyObject*) PyUnicode_Concat(
  1450. PyObject *left, /* Left string */
  1451. PyObject *right /* Right string */
  1452. );
  1453. /* Concat two strings and put the result in *pleft
  1454. (sets *pleft to NULL on error) */
  1455. PyAPI_FUNC(void) PyUnicode_Append(
  1456. PyObject **pleft, /* Pointer to left string */
  1457. PyObject *right /* Right string */
  1458. );
  1459. /* Concat two strings, put the result in *pleft and drop the right object
  1460. (sets *pleft to NULL on error) */
  1461. PyAPI_FUNC(void) PyUnicode_AppendAndDel(
  1462. PyObject **pleft, /* Pointer to left string */
  1463. PyObject *right /* Right string */
  1464. );
  1465. /* Split a string giving a list of Unicode strings.
  1466. If sep is NULL, splitting will be done at all whitespace
  1467. substrings. Otherwise, splits occur at the given separator.
  1468. At most maxsplit splits will be done. If negative, no limit is set.
  1469. Separators are not included in the resulting list.
  1470. */
  1471. PyAPI_FUNC(PyObject*) PyUnicode_Split(
  1472. PyObject *s, /* String to split */
  1473. PyObject *sep, /* String separator */
  1474. Py_ssize_t maxsplit /* Maxsplit count */
  1475. );
  1476. /* Dito, but split at line breaks.
  1477. CRLF is considered to be one line break. Line breaks are not
  1478. included in the resulting list. */
  1479. PyAPI_FUNC(PyObject*) PyUnicode_Splitlines(
  1480. PyObject *s, /* String to split */
  1481. int keepends /* If true, line end markers are included */
  1482. );
  1483. /* Partition a string using a given separator. */
  1484. PyAPI_FUNC(PyObject*) PyUnicode_Partition(
  1485. PyObject *s, /* String to partition */
  1486. PyObject *sep /* String separator */
  1487. );
  1488. /* Partition a string using a given separator, searching from the end of the
  1489. string. */
  1490. PyAPI_FUNC(PyObject*) PyUnicode_RPartition(
  1491. PyObject *s, /* String to partition */
  1492. PyObject *sep /* String separator */
  1493. );
  1494. /* Split a string giving a list of Unicode strings.
  1495. If sep is NULL, splitting will be done at all whitespace
  1496. substrings. Otherwise, splits occur at the given separator.
  1497. At most maxsplit splits will be done. But unlike PyUnicode_Split
  1498. PyUnicode_RSplit splits from the end of the string. If negative,
  1499. no limit is set.
  1500. Separators are not included in the resulting list.
  1501. */
  1502. PyAPI_FUNC(PyObject*) PyUnicode_RSplit(
  1503. PyObject *s, /* String to split */
  1504. PyObject *sep, /* String separator */
  1505. Py_ssize_t maxsplit /* Maxsplit count */
  1506. );
  1507. /* Translate a string by applying a character mapping table to it and
  1508. return the resulting Unicode object.
  1509. The mapping table must map Unicode ordinal integers to Unicode
  1510. ordinal integers or None (causing deletion of the character).
  1511. Mapping tables may be dictionaries or sequences. Unmapped character
  1512. ordinals (ones which cause a LookupError) are left untouched and
  1513. are copied as-is.
  1514. */
  1515. PyAPI_FUNC(PyObject *) PyUnicode_Translate(
  1516. PyObject *str, /* String */
  1517. PyObject *table, /* Translate table */
  1518. const char *errors /* error handling */
  1519. );
  1520. /* Join a sequence of strings using the given separator and return
  1521. the resulting Unicode string. */
  1522. PyAPI_FUNC(PyObject*) PyUnicode_Join(
  1523. PyObject *separator, /* Separator string */
  1524. PyObject *seq /* Sequence object */
  1525. );
  1526. /* Return 1 if substr matches str[start:end] at the given tail end, 0
  1527. otherwise. */
  1528. PyAPI_FUNC(Py_ssize_t) PyUnicode_Tailmatch(
  1529. PyObject *str, /* String */
  1530. PyObject *substr, /* Prefix or Suffix string */
  1531. Py_ssize_t start, /* Start index */
  1532. Py_ssize_t end, /* Stop index */
  1533. int direction /* Tail end: -1 prefix, +1 suffix */
  1534. );
  1535. /* Return the first position of substr in str[start:end] using the
  1536. given search direction or -1 if not found. -2 is returned in case
  1537. an error occurred and an exception is set. */
  1538. PyAPI_FUNC(Py_ssize_t) PyUnicode_Find(
  1539. PyObject *str, /* String */
  1540. PyObject *substr, /* Substring to find */
  1541. Py_ssize_t start, /* Start index */
  1542. Py_ssize_t end, /* Stop index */
  1543. int direction /* Find direction: +1 forward, -1 backward */
  1544. );
  1545. /* Like PyUnicode_Find, but search for single character only. */
  1546. PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
  1547. PyObject *str,
  1548. Py_UCS4 ch,
  1549. Py_ssize_t start,
  1550. Py_ssize_t end,
  1551. int direction
  1552. );
  1553. /* Count the number of occurrences of substr in str[start:end]. */
  1554. PyAPI_FUNC(Py_ssize_t) PyUnicode_Count(
  1555. PyObject *str, /* String */
  1556. PyObject *substr, /* Substring to count */
  1557. Py_ssize_t start, /* Start index */
  1558. Py_ssize_t end /* Stop index */
  1559. );
  1560. /* Replace at most maxcount occurrences of substr in str with replstr
  1561. and return the resulting Unicode object. */
  1562. PyAPI_FUNC(PyObject *) PyUnicode_Replace(
  1563. PyObject *str, /* String */
  1564. PyObject *substr, /* Substring to find */
  1565. PyObject *replstr, /* Substring to replace */
  1566. Py_ssize_t maxcount /* Max. number of replacements to apply;
  1567. -1 = all */
  1568. );
  1569. /* Compare two strings and return -1, 0, 1 for less than, equal,
  1570. greater than resp.
  1571. Raise an exception and return -1 on error. */
  1572. PyAPI_FUNC(int) PyUnicode_Compare(
  1573. PyObject *left, /* Left string */
  1574. PyObject *right /* Right string */
  1575. );
  1576. #ifndef Py_LIMITED_API
  1577. PyAPI_FUNC(int) _PyUnicode_CompareWithId(
  1578. PyObject *left, /* Left string */
  1579. _Py_Identifier *right /* Right identifier */
  1580. );
  1581. #endif
  1582. PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
  1583. PyObject *left,
  1584. const char *right /* ASCII-encoded string */
  1585. );
  1586. /* Rich compare two strings and return one of the following:
  1587. - NULL in case an exception was raised
  1588. - Py_True or Py_False for successfully comparisons
  1589. - Py_NotImplemented in case the type combination is unknown
  1590. Note that Py_EQ and Py_NE comparisons can cause a UnicodeWarning in
  1591. case the conversion of the arguments to Unicode fails with a
  1592. UnicodeDecodeError.
  1593. Possible values for op:
  1594. Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE
  1595. */
  1596. PyAPI_FUNC(PyObject *) PyUnicode_RichCompare(
  1597. PyObject *left, /* Left string */
  1598. PyObject *right, /* Right string */
  1599. int op /* Operation: Py_EQ, Py_NE, Py_GT, etc. */
  1600. );
  1601. /* Apply an argument tuple or dictionary to a format string and return
  1602. the resulting Unicode string. */
  1603. PyAPI_FUNC(PyObject *) PyUnicode_Format(
  1604. PyObject *format, /* Format string */
  1605. PyObject *args /* Argument tuple or dictionary */
  1606. );
  1607. /* Checks whether element is contained in container and return 1/0
  1608. accordingly.
  1609. element has to coerce to a one element Unicode string. -1 is
  1610. returned in case of an error. */
  1611. PyAPI_FUNC(int) PyUnicode_Contains(
  1612. PyObject *container, /* Container string */
  1613. PyObject *element /* Element string */
  1614. );
  1615. /* Checks whether argument is a valid identifier. */
  1616. PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
  1617. #ifndef Py_LIMITED_API
  1618. /* Externally visible for str.strip(unicode) */
  1619. PyAPI_FUNC(PyObject *) _PyUnicode_XStrip(
  1620. PyObject *self,
  1621. int striptype,
  1622. PyObject *sepobj
  1623. );
  1624. #endif
  1625. /* Using explicit passed-in values, insert the thousands grouping
  1626. into the string pointed to by buffer. For the argument descriptions,
  1627. see Objects/stringlib/localeutil.h */
  1628. #ifndef Py_LIMITED_API
  1629. PyAPI_FUNC(Py_ssize_t) _PyUnicode_InsertThousandsGrouping(
  1630. PyObject *unicode,
  1631. Py_ssize_t index,
  1632. Py_ssize_t n_buffer,
  1633. void *digits,
  1634. Py_ssize_t n_digits,
  1635. Py_ssize_t min_width,
  1636. const char *grouping,
  1637. PyObject *thousands_sep,
  1638. Py_UCS4 *maxchar);
  1639. #endif
  1640. /* === Characters Type APIs =============================================== */
  1641. /* Helper array used by Py_UNICODE_ISSPACE(). */
  1642. #ifndef Py_LIMITED_API
  1643. PyAPI_DATA(const unsigned char) _Py_ascii_whitespace[];
  1644. /* These should not be used directly. Use the Py_UNICODE_IS* and
  1645. Py_UNICODE_TO* macros instead.
  1646. These APIs are implemented in Objects/unicodectype.c.
  1647. */
  1648. PyAPI_FUNC(int) _PyUnicode_IsLowercase(
  1649. Py_UCS4 ch /* Unicode character */
  1650. );
  1651. PyAPI_FUNC(int) _PyUnicode_IsUppercase(
  1652. Py_UCS4 ch /* Unicode character */
  1653. );
  1654. PyAPI_FUNC(int) _PyUnicode_IsTitlecase(
  1655. Py_UCS4 ch /* Unicode character */
  1656. );
  1657. PyAPI_FUNC(int) _PyUnicode_IsXidStart(
  1658. Py_UCS4 ch /* Unicode character */
  1659. );
  1660. PyAPI_FUNC(int) _PyUnicode_IsXidContinue(
  1661. Py_UCS4 ch /* Unicode character */
  1662. );
  1663. PyAPI_FUNC(int) _PyUnicode_IsWhitespace(
  1664. const Py_UCS4 ch /* Unicode character */
  1665. );
  1666. PyAPI_FUNC(int) _PyUnicode_IsLinebreak(
  1667. const Py_UCS4 ch /* Unicode character */
  1668. );
  1669. PyAPI_FUNC(Py_UCS4) _PyUnicode_ToLowercase(
  1670. Py_UCS4 ch /* Unicode character */
  1671. );
  1672. PyAPI_FUNC(Py_UCS4) _PyUnicode_ToUppercase(
  1673. Py_UCS4 ch /* Unicode character */
  1674. );
  1675. PyAPI_FUNC(Py_UCS4) _PyUnicode_ToTitlecase(
  1676. Py_UCS4 ch /* Unicode character */
  1677. );
  1678. PyAPI_FUNC(int) _PyUnicode_ToLowerFull(
  1679. Py_UCS4 ch, /* Unicode character */
  1680. Py_UCS4 *res
  1681. );
  1682. PyAPI_FUNC(int) _PyUnicode_ToTitleFull(
  1683. Py_UCS4 ch, /* Unicode character */
  1684. Py_UCS4 *res
  1685. );
  1686. PyAPI_FUNC(int) _PyUnicode_ToUpperFull(
  1687. Py_UCS4 ch, /* Unicode character */
  1688. Py_UCS4 *res
  1689. );
  1690. PyAPI_FUNC(int) _PyUnicode_ToFoldedFull(
  1691. Py_UCS4 ch, /* Unicode character */
  1692. Py_UCS4 *res
  1693. );
  1694. PyAPI_FUNC(int) _PyUnicode_IsCaseIgnorable(
  1695. Py_UCS4 ch /* Unicode character */
  1696. );
  1697. PyAPI_FUNC(int) _PyUnicode_IsCased(
  1698. Py_UCS4 ch /* Unicode character */
  1699. );
  1700. PyAPI_FUNC(int) _PyUnicode_ToDecimalDigit(
  1701. Py_UCS4 ch /* Unicode character */
  1702. );
  1703. PyAPI_FUNC(int) _PyUnicode_ToDigit(
  1704. Py_UCS4 ch /* Unicode character */
  1705. );
  1706. PyAPI_FUNC(double) _PyUnicode_ToNumeric(
  1707. Py_UCS4 ch /* Unicode character */
  1708. );
  1709. PyAPI_FUNC(int) _PyUnicode_IsDecimalDigit(
  1710. Py_UCS4 ch /* Unicode character */
  1711. );
  1712. PyAPI_FUNC(int) _PyUnicode_IsDigit(
  1713. Py_UCS4 ch /* Unicode character */
  1714. );
  1715. PyAPI_FUNC(int) _PyUnicode_IsNumeric(
  1716. Py_UCS4 ch /* Unicode character */
  1717. );
  1718. PyAPI_FUNC(int) _PyUnicode_IsPrintable(
  1719. Py_UCS4 ch /* Unicode character */
  1720. );
  1721. PyAPI_FUNC(int) _PyUnicode_IsAlpha(
  1722. Py_UCS4 ch /* Unicode character */
  1723. );
  1724. PyAPI_FUNC(size_t) Py_UNICODE_strlen(
  1725. const Py_UNICODE *u
  1726. );
  1727. PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strcpy(
  1728. Py_UNICODE *s1,
  1729. const Py_UNICODE *s2);
  1730. PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strcat(
  1731. Py_UNICODE *s1, const Py_UNICODE *s2);
  1732. PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strncpy(
  1733. Py_UNICODE *s1,
  1734. const Py_UNICODE *s2,
  1735. size_t n);
  1736. PyAPI_FUNC(int) Py_UNICODE_strcmp(
  1737. const Py_UNICODE *s1,
  1738. const Py_UNICODE *s2
  1739. );
  1740. PyAPI_FUNC(int) Py_UNICODE_strncmp(
  1741. const Py_UNICODE *s1,
  1742. const Py_UNICODE *s2,
  1743. size_t n
  1744. );
  1745. PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strchr(
  1746. const Py_UNICODE *s,
  1747. Py_UNICODE c
  1748. );
  1749. PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strrchr(
  1750. const Py_UNICODE *s,
  1751. Py_UNICODE c
  1752. );
  1753. PyAPI_FUNC(PyObject*) _PyUnicode_FormatLong(PyObject *, int, int, int);
  1754. /* Create a copy of a unicode string ending with a nul character. Return NULL
  1755. and raise a MemoryError exception on memory allocation failure, otherwise
  1756. return a new allocated buffer (use PyMem_Free() to free the buffer). */
  1757. PyAPI_FUNC(Py_UNICODE*) PyUnicode_AsUnicodeCopy(
  1758. PyObject *unicode
  1759. );
  1760. #endif /* Py_LIMITED_API */
  1761. #if defined(Py_DEBUG) && !defined(Py_LIMITED_API)
  1762. PyAPI_FUNC(int) _PyUnicode_CheckConsistency(
  1763. PyObject *op,
  1764. int check_content);
  1765. #endif
  1766. /* Return an interned Unicode object for an Identifier; may fail if there is no memory.*/
  1767. PyAPI_FUNC(PyObject*) _PyUnicode_FromId(_Py_Identifier*);
  1768. /* Clear all static strings. */
  1769. PyAPI_FUNC(void) _PyUnicode_ClearStaticStrings(void);
  1770. #ifdef __cplusplus
  1771. }
  1772. #endif
  1773. #endif /* !Py_UNICODEOBJECT_H */