diff options
| author | shadchin <[email protected]> | 2022-02-10 16:44:30 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:44:30 +0300 |
| commit | 2598ef1d0aee359b4b6d5fdd1758916d5907d04f (patch) | |
| tree | 012bb94d777798f1f56ac1cec429509766d05181 /contrib/restricted/boost/libs/python/src/exec.cpp | |
| parent | 6751af0b0c1b952fede40b19b71da8025b5d8bcf (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'contrib/restricted/boost/libs/python/src/exec.cpp')
| -rw-r--r-- | contrib/restricted/boost/libs/python/src/exec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/restricted/boost/libs/python/src/exec.cpp b/contrib/restricted/boost/libs/python/src/exec.cpp index 43e860d992b..4e59782dbf8 100644 --- a/contrib/restricted/boost/libs/python/src/exec.cpp +++ b/contrib/restricted/boost/libs/python/src/exec.cpp @@ -106,7 +106,7 @@ object BOOST_PYTHON_DECL exec_file(char const *filename, object global, object l char *f = const_cast<char *>(filename); // Let python open the file to avoid potential binary incompatibilities. #if PY_VERSION_HEX >= 0x03040000 - FILE *fs = fopen(f, "r"); + FILE *fs = fopen(f, "r"); #elif PY_VERSION_HEX >= 0x03000000 PyObject *fo = Py_BuildValue("s", f); FILE *fs = _Py_fopen(fo, "r"); |
