[Python-checkins] cpython (3.3): Replace tabs with spaces in posixmodule.c

petri.lehtinen python-checkins at python.org
Tue Oct 23 15:34:02 CEST 2012


http://hg.python.org/cpython/rev/8647b9c703d4
changeset:   79913:8647b9c703d4
branch:      3.3
parent:      79911:957a6c00d3af
user:        Petri Lehtinen <petri at digip.org>
date:        Tue Oct 23 16:12:14 2012 +0300
summary:
  Replace tabs with spaces in posixmodule.c

files:
  Modules/posixmodule.c |  12 ++++++------
  1 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -2568,7 +2568,7 @@
         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
@@ -7116,12 +7116,12 @@
     if (!check_CreateSymbolicLink()) {
         PyErr_SetString(PyExc_NotImplementedError,
             "CreateSymbolicLink functions not found");
-		return NULL;
-	}
+                return NULL;
+        }
     if (!win32_can_symlink) {
         PyErr_SetString(PyExc_OSError, "symbolic link privilege not held");
-		return NULL;
-	}
+                return NULL;
+        }
 #endif
 
     if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|i$O&:symlink",
@@ -7197,7 +7197,7 @@
     DWORD n_bytes_returned;
     DWORD io_result;
     PyObject *po, *result;
-	int dir_fd;
+        int dir_fd;
     HANDLE reparse_point_handle;
 
     char target_buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list