Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
844807ea
Commit
844807ea
authored
Aug 16, 2010
by
Amaury Forgeot d'Arc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
r82659 reintroduced some tab characters. Untabify again.
parent
f2b69df0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Modules/posixmodule.c
Modules/posixmodule.c
+7
-7
No files found.
Modules/posixmodule.c
View file @
844807ea
...
...
@@ -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__
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment