diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-08-17 18:39:25 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-08-17 18:39:25 (GMT) |
commit | 339d0f720e86dc34837547c90d3003a4a68d7d46 (patch) | |
tree | 2059e5d02f490540e759800b127d50f3fcd8c2b5 /Python/modsupport.c | |
parent | f75976617bb36c892ee8a0f6a6fd3caddbd38cea (diff) | |
download | cpython-339d0f720e86dc34837547c90d3003a4a68d7d46.zip cpython-339d0f720e86dc34837547c90d3003a4a68d7d46.tar.gz cpython-339d0f720e86dc34837547c90d3003a4a68d7d46.tar.bz2 |
Patch #445762: Support --disable-unicode
- Do not compile unicodeobject, unicodectype, and unicodedata if Unicode is disabled
- check for Py_USING_UNICODE in all places that use Unicode functions
- disables unicode literals, and the builtin functions
- add the types.StringTypes list
- remove Unicode literals from most tests.
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r-- | Python/modsupport.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c index 8fad54a..0450a8a 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -199,6 +199,7 @@ do_mklist(char **p_format, va_list *p_va, int endchar, int n) return v; } +#ifdef Py_USING_UNICODE static int _ustrlen(Py_UNICODE *u) { @@ -207,6 +208,7 @@ _ustrlen(Py_UNICODE *u) while (*v != 0) { i++; v++; } return i; } +#endif static PyObject * do_mktuple(char **p_format, va_list *p_va, int endchar, int n) @@ -269,6 +271,7 @@ do_mkvalue(char **p_format, va_list *p_va) case 'L': return PyLong_FromLongLong((LONG_LONG)va_arg(*p_va, LONG_LONG)); #endif +#ifdef Py_USING_UNICODE case 'u': { PyObject *v; @@ -291,6 +294,7 @@ do_mkvalue(char **p_format, va_list *p_va) } return v; } +#endif case 'f': case 'd': return PyFloat_FromDouble( |