From: Petri Lehtinen Date: Tue, 23 Oct 2012 13:31:06 +0000 (+0300) Subject: Replace tabs with spaces in posixmodule.c X-Git-Tag: v3.4.0a1~2181 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d25b3982c760289f7c5eeefdc81a5659a9703aa7;p=thirdparty%2FPython%2Fcpython.git Replace tabs with spaces in posixmodule.c --- d25b3982c760289f7c5eeefdc81a5659a9703aa7 diff --cc Modules/posixmodule.c index 0fe3963d1819,d4982f027161..69d5229068ca --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@@ -2442,7 -2568,9 +2442,7 @@@ posix_chdir(PyObject *self, PyObject *a result = win32_wchdir(path.wide); else result = win32_chdir(path.narrow); - result = !result; /* on unix, success = 0, on windows, success = !0 */ + result = !result; /* on unix, success = 0, on windows, success = !0 */ -#elif defined(PYOS_OS2) && defined(PYCC_GCC) - result = _chdir2(path.narrow); #else #ifdef HAVE_FCHDIR if (path.fd != -1)