From 3b918c3787583aca1563a4f9f26371983c4bc388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Thu, 21 Nov 2002 20:18:46 +0000 Subject: [PATCH] Comment out the getcwdu implementation for --disable-unicode builds --- Modules/posixmodule.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 9dc1d05d08e..04a0611de91 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1250,6 +1250,7 @@ posix_getcwd(PyObject *self, PyObject *args) return PyString_FromString(buf); } +#ifdef Py_USING_UNICODE PyDoc_STRVAR(posix_getcwdu__doc__, "getcwdu() -> path\n\n\ Return a unicode string representing the current working directory."); @@ -1287,6 +1288,7 @@ posix_getcwdu(PyObject *self, PyObject *args) return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict"); } #endif +#endif #ifdef HAVE_LINK @@ -6855,8 +6857,10 @@ static PyMethodDef posix_methods[] = { #endif #ifdef HAVE_GETCWD {"getcwd", posix_getcwd, METH_VARARGS, posix_getcwd__doc__}, +#ifdef Py_USING_UNICODE {"getcwdu", posix_getcwdu, METH_VARARGS, posix_getcwdu__doc__}, #endif +#endif #ifdef HAVE_LINK {"link", posix_link, METH_VARARGS, posix_link__doc__}, #endif /* HAVE_LINK */