mirror of https://github.com/python/cpython
parent
5576091fc7
commit
175d00784d
|
@ -15,6 +15,11 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
Build
|
||||||
|
-----
|
||||||
|
|
||||||
|
- Bug #3887: Package x64 version of CRT for AMD64 Windows binaries.
|
||||||
|
|
||||||
|
|
||||||
What's New in Python 2.6 release candidate 2?
|
What's New in Python 2.6 release candidate 2?
|
||||||
=============================================
|
=============================================
|
||||||
|
|
|
@ -9,7 +9,7 @@ msi = None
|
||||||
if len(sys.argv)==2:
|
if len(sys.argv)==2:
|
||||||
msi = sys.argv[1]
|
msi = sys.argv[1]
|
||||||
if Win64:
|
if Win64:
|
||||||
modules = ["Microsoft_VC90_CRT_x86.msm", "policy_8_0_Microsoft_VC80_CRT_x86_x64.msm"]
|
modules = ["Microsoft_VC90_CRT_x86_x64.msm", "policy_8_0_Microsoft_VC80_CRT_x86_x64.msm"]
|
||||||
if not msi: msi = "python-%s.amd64.msi" % full_current_version
|
if not msi: msi = "python-%s.amd64.msi" % full_current_version
|
||||||
else:
|
else:
|
||||||
modules = ["Microsoft_VC90_CRT_x86.msm","policy_8_0_Microsoft_VC80_CRT_x86.msm"]
|
modules = ["Microsoft_VC90_CRT_x86.msm","policy_8_0_Microsoft_VC80_CRT_x86.msm"]
|
||||||
|
|
Loading…
Reference in New Issue