diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-08-16 22:16:51 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2010-08-16 22:16:51 (GMT) |
commit | 844807ead213dc30196eeaf9d538e0ef94edf1db (patch) | |
tree | 2c10f3da2cd04b61b66cc6bc6f7f6f2b6938812d /Modules | |
parent | f2b69df023f48f114fdebc784a7a3c4e91b5255e (diff) | |
download | cpython-844807ead213dc30196eeaf9d538e0ef94edf1db.zip cpython-844807ead213dc30196eeaf9d538e0ef94edf1db.tar.gz cpython-844807ead213dc30196eeaf9d538e0ef94edf1db.tar.bz2 |
r82659 reintroduced some tab characters. Untabify again.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 821fed2..c36f7b4 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -263,13 +263,13 @@ extern int lstat(const char *, struct stat *); #include <process.h> #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 <malloc.h> @@ -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__}, |