summaryrefslogtreecommitdiff
path: root/Python/modsupport.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-03 17:49:24 +0000
committerGuido van Rossum <guido@python.org>2007-05-03 17:49:24 +0000
commit6c65ec444727759ae588da57f182d678e813086e (patch)
treec91670f353805c54b6971c01ddbef6380b6e9b99 /Python/modsupport.c
parent69c364b09b9bb97a9f4e51adb3f549cdc29e1d7c (diff)
downloadcpython-6c65ec444727759ae588da57f182d678e813086e.tar.gz
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
(With the help of unifdef from freshmeat.)
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r--Python/modsupport.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index 1aa3df2852..af774f0b60 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -240,7 +240,6 @@ do_mklist(const char **p_format, va_list *p_va, int endchar, int n, int flags)
return v;
}
-#ifdef Py_USING_UNICODE
static int
_ustrlen(Py_UNICODE *u)
{
@@ -249,7 +248,6 @@ _ustrlen(Py_UNICODE *u)
while (*v != 0) { i++; v++; }
return i;
}
-#endif
static PyObject *
do_mktuple(const char **p_format, va_list *p_va, int endchar, int n, int flags)
@@ -349,7 +347,6 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags)
case 'K':
return PyLong_FromUnsignedLongLong((PY_LONG_LONG)va_arg(*p_va, unsigned PY_LONG_LONG));
#endif
-#ifdef Py_USING_UNICODE
case 'u':
{
PyObject *v;
@@ -375,7 +372,6 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags)
}
return v;
}
-#endif
case 'f':
case 'd':
return PyFloat_FromDouble(