From 844807ead213dc30196eeaf9d538e0ef94edf1db Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Mon, 16 Aug 2010 22:16:51 +0000 Subject: [PATCH] r82659 reintroduced some tab characters. Untabify again. --- Modules/posixmodule.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 821fed28eea..c36f7b421c1 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -263,13 +263,13 @@ extern int lstat(const char *, struct stat *); #include #endif #ifndef VOLUME_NAME_DOS -#define VOLUME_NAME_DOS 0x0 +#define VOLUME_NAME_DOS 0x0 #endif #ifndef VOLUME_NAME_NT -#define VOLUME_NAME_NT 0x2 +#define VOLUME_NAME_NT 0x2 #endif #ifndef IO_REPARSE_TAG_SYMLINK -#define IO_REPARSE_TAG_SYMLINK (0xA000000CL) +#define IO_REPARSE_TAG_SYMLINK (0xA000000CL) #endif #include "osdefs.h" #include @@ -7661,11 +7661,11 @@ static PyMethodDef posix_methods[] = { {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__}, #endif /* HAVE_READLINK */ #if !defined(HAVE_READLINK) && defined(MS_WINDOWS) - {"readlink", win_readlink, METH_VARARGS, win_readlink__doc__}, + {"readlink", win_readlink, METH_VARARGS, win_readlink__doc__}, #endif /* !defined(HAVE_READLINK) && defined(MS_WINDOWS) */ - {"rename", posix_rename, METH_VARARGS, posix_rename__doc__}, - {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__}, - {"stat", posix_stat, METH_VARARGS, posix_stat__doc__}, + {"rename", posix_rename, METH_VARARGS, posix_rename__doc__}, + {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__}, + {"stat", posix_stat, METH_VARARGS, posix_stat__doc__}, {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__}, #ifdef HAVE_SYMLINK {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},