diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-12 20:41:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-12 20:41:17 (GMT) |
commit | 409b53840b83bc275db3ac234c547ff4dd67af58 (patch) | |
tree | fdca749e505669e3736e9659d8a6dada4eaed9d9 /Python/fileutils.c | |
parent | 3974d6abb200a42b11eb8c9a2522c9d11d611b23 (diff) | |
download | cpython-409b53840b83bc275db3ac234c547ff4dd67af58.zip cpython-409b53840b83bc275db3ac234c547ff4dd67af58.tar.gz cpython-409b53840b83bc275db3ac234c547ff4dd67af58.tar.bz2 |
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 074888e..eecbb3b 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 |