diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-08-28 00:53:59 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-08-28 00:53:59 +0200 |
commit | e5883d6d95989121670eca012dd5bde1721747e7 (patch) | |
tree | 0a3d97e7d4c3fd6e7381ae9357a236333315f08d /Python/pythonrun.c | |
parent | 8ccecb68f7c8ca1e6e4cdde3a3a8114c737d43ae (diff) | |
download | cpython-e5883d6d95989121670eca012dd5bde1721747e7.tar.gz |
Issue #18571: Implementation of the PEP 446: file descriptors and file handles
are now created non-inheritable; add functions os.get/set_inheritable(),
os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index dc8f412cb4..522a05d8b4 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1454,7 +1454,7 @@ PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, /* Try to run a pyc file. First, re-open in binary */ if (closeit) fclose(fp); - if ((pyc_fp = fopen(filename, "rb")) == NULL) { + if ((pyc_fp = _Py_fopen(filename, "rb")) == NULL) { fprintf(stderr, "python: Can't reopen .pyc file\n"); goto done; } |