Skip to content

Commit 27ad85e

Browse files
committed
whitespace
1 parent 3ff967d commit 27ad85e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/pybind11/embed.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ inline void set_interpreter_argv(int argc, char** argv, bool add_current_dir_to_
151151
auto pysys_argv = safe_argv;
152152
#endif
153153

154-
# if PY_MAJOR_VERSION == 2 && (PY_MINOR_VERSION < 6 || (PY_MINOR_VERSION == 6 && PY_MICRO_VERSION < 6)) || \
155-
PY_MAJOR_VERSION == 3 && (PY_MINOR_VERSION < 1 || (PY_MINOR_VERSION == 1 && PY_MICRO_VERSION < 3))
154+
#if PY_MAJOR_VERSION == 2 && (PY_MINOR_VERSION < 6 || (PY_MINOR_VERSION == 6 && PY_MICRO_VERSION < 6)) || \
155+
PY_MAJOR_VERSION == 3 && (PY_MINOR_VERSION < 1 || (PY_MINOR_VERSION == 1 && PY_MICRO_VERSION < 3))
156156
// These python versions don't have PySys_SetArgvEx, so we have to use the workaround
157157
// recommended by https://docs.python.org/3.5/c-api/init.html#c.PySys_SetArgvEx
158158
// to work around CVE-2008-5983

0 commit comments

Comments
 (0)