diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-12 22:41:17 +0200 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-12 22:41:17 +0200 |
commit | 337c5c534d5987d149dbc2d8058a93270184ff8c (patch) | |
tree | bb251d380e1829aa7df21f58d81d059ded5d296c /Python/fileutils.c | |
parent | fb57628d2d42bd4384210f8ce4ee22fcbcadd393 (diff) | |
download | cpython-337c5c534d5987d149dbc2d8058a93270184ff8c.tar.gz |
Don't export internal symbols ("make smelly")
Diffstat (limited to 'Python/fileutils.c')
-rw-r--r-- | Python/fileutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c index 074888eaf1..eecbb3b57a 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -566,7 +566,7 @@ _Py_stat(PyObject *path, struct stat *statbuf) #endif -int +static int get_inheritable(int fd, int raise) { #ifdef MS_WINDOWS |