Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1 | /* this is sort of a hack. there's at least one place (formatting |
| 2 | floats) where some stringlib code takes a different path if it's |
| 3 | compiled as unicode. */ |
| 4 | #define STRINGLIB_IS_UNICODE 1 |
| 5 | |
| 6 | #define FASTSEARCH ucs1lib_fastsearch |
| 7 | #define STRINGLIB(F) ucs1lib_##F |
| 8 | #define STRINGLIB_OBJECT PyUnicodeObject |
Victor Stinner | 8cc70dc | 2011-10-11 23:22:22 +0200 | [diff] [blame] | 9 | #define STRINGLIB_SIZEOF_CHAR 1 |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10 | #define STRINGLIB_CHAR Py_UCS1 |
| 11 | #define STRINGLIB_TYPE_NAME "unicode" |
| 12 | #define STRINGLIB_PARSE_CODE "U" |
| 13 | #define STRINGLIB_EMPTY unicode_empty |
| 14 | #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE |
| 15 | #define STRINGLIB_ISLINEBREAK BLOOM_LINEBREAK |
| 16 | #define STRINGLIB_ISDECIMAL Py_UNICODE_ISDECIMAL |
| 17 | #define STRINGLIB_TODECIMAL Py_UNICODE_TODECIMAL |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 18 | #define STRINGLIB_STR PyUnicode_1BYTE_DATA |
| 19 | #define STRINGLIB_LEN PyUnicode_GET_LENGTH |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 20 | #define STRINGLIB_NEW _PyUnicode_FromUCS1 |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 21 | #define STRINGLIB_RESIZE not_supported |
| 22 | #define STRINGLIB_CHECK PyUnicode_Check |
| 23 | #define STRINGLIB_CHECK_EXACT PyUnicode_CheckExact |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 24 | |
| 25 | #define STRINGLIB_TOSTR PyObject_Str |
| 26 | #define STRINGLIB_TOASCII PyObject_ASCII |
| 27 | |
| 28 | #define _Py_InsertThousandsGrouping _PyUnicode_ucs1_InsertThousandsGrouping |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 29 | |
| 30 | |