diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-29 08:56:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 08:56:49 (GMT) |
commit | 8b626a47bafdb2d1ebb1321e50ffa5d6c721bf3a (patch) | |
tree | 325fbb4507cac60718250226d1b7f7e1db559ef3 /Python/pythonrun.c | |
parent | bfd94ab9e9f4055ecedaa500b46b0270da9ffe12 (diff) | |
download | cpython-8b626a47bafdb2d1ebb1321e50ffa5d6c721bf3a.zip cpython-8b626a47bafdb2d1ebb1321e50ffa5d6c721bf3a.tar.gz cpython-8b626a47bafdb2d1ebb1321e50ffa5d6c721bf3a.tar.bz2 |
gh-110079: Remove extern "C" { ...} in C code (#110080)
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 81ab78e..1b282aa 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -37,11 +37,6 @@ # include "windows.h" #endif - -#ifdef __cplusplus -extern "C" { -#endif - /* Forward */ static void flush_io(void); static PyObject *run_mod(mod_ty, PyObject *, PyObject *, PyObject *, @@ -2017,7 +2012,3 @@ PyRun_InteractiveLoop(FILE *f, const char *p) { return PyRun_InteractiveLoopFlags(f, p, NULL); } - -#ifdef __cplusplus -} -#endif |