diff options
Diffstat (limited to 'PC/launcher.c')
-rw-r--r-- | PC/launcher.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/PC/launcher.c b/PC/launcher.c index 47fafbc3bf6..fed5e156b92 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -140,7 +140,7 @@ static wchar_t * get_env(wchar_t * key) return buf; } -#if defined(_DEBUG) +#if defined(Py_DEBUG) /* Do not define EXECUTABLEPATH_VALUE in debug builds as it'll never point to the debug build. */ #if defined(_WINDOWS) @@ -1272,6 +1272,7 @@ static PYC_MAGIC magic_values[] = { { 3500, 3549, L"3.12" }, { 3550, 3599, L"3.13" }, { 3600, 3649, L"3.14" }, + { 3650, 3699, L"3.15" }, { 0 } }; |