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 5286109 commit 3fe9cb9Copy full SHA for 3fe9cb9
cpython-windows/build.py
@@ -1598,16 +1598,16 @@ def collect_python_build_artifacts(
1598
dirs = {p for p in os.listdir(intermediates_path)}
1599
1600
for extension, entry in CONVERT_TO_BUILTIN_EXTENSIONS.items():
1601
+ if static and entry.get("ignore_static"):
1602
+ continue
1603
+
1604
if extension not in dirs:
1605
if entry.get("ignore_missing"):
1606
continue
1607
else:
1608
log("extension not present: %s" % extension)
1609
sys.exit(1)
1610
- if static and entry.get("ignore_static"):
- continue
-
1611
extension_projects.add(extension)
1612
if static:
1613
depends_projects |= set(entry.get("static_depends", []))
0 commit comments