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 6881514 commit b307429Copy full SHA for b307429
cpython-windows/build.py
@@ -1307,7 +1307,13 @@ def build_cpython(
1307
tcltk_commit = DOWNLOADS["tk-windows-bin"]["git_commit"]
1308
tcltk_path = td / ("cpython-bin-deps-%s" % tcltk_commit)
1309
tcltk_arch = {"amd64": "amd64", "x86": "win32"}[arch]
1310
- (tcltk_path / tcltk_arch / "lib" / "nmake" / "x86_64-w64-mingw32-nmakehlp.exe").unlink()
+ (
1311
+ tcltk_path
1312
+ / tcltk_arch
1313
+ / "lib"
1314
+ / "nmake"
1315
+ / "x86_64-w64-mingw32-nmakehlp.exe"
1316
+ ).unlink()
1317
1318
cpython_source_path = td / ("Python-%s" % python_version)
1319
pcbuild_path = cpython_source_path / "PCbuild"
0 commit comments