We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acea4c0 commit 0555a6cCopy full SHA for 0555a6c
PC/launcher.c
@@ -499,6 +499,7 @@ locate_all_pythons(void)
499
{
500
/* venv Python is highest priority */
501
locate_venv_python();
502
+#ifndef __MINGW32__
503
#if defined(_M_X64)
504
/* If we are a 64bit process, first hit the 32bit keys. */
505
debug(L"locating Pythons in 32bit registry\n");
@@ -519,6 +520,7 @@ locate_all_pythons(void)
519
520
locate_pythons_for_key(HKEY_LOCAL_MACHINE, KEY_READ);
521
/* Store-installed Python is lowest priority */
522
locate_store_pythons();
523
+#endif
524
qsort(installed_pythons, num_installed_pythons, sizeof(INSTALLED_PYTHON),
525
compare_pythons);
526
}
0 commit comments