[Python-checkins] r62208 - python/trunk/Tools/msi/msi.py

martin.v.loewis python-checkins at python.org
Mon Apr 7 16:54:17 CEST 2008


Author: martin.v.loewis
Date: Mon Apr  7 16:54:16 2008
New Revision: 62208

Modified:
   python/trunk/Tools/msi/msi.py
Log:
Make private_crt feature object a global variable.

Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py	(original)
+++ python/trunk/Tools/msi/msi.py	Mon Apr  7 16:54:16 2008
@@ -794,7 +794,7 @@
     # (i.e. additional Python libraries) need to follow the parent feature.
     # Features that have no advertisement trigger (e.g. the test suite)
     # must not support advertisement
-    global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature
+    global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature, private_crt
     default_feature = Feature(db, "DefaultFeature", "Python",
                               "Python Interpreter and Libraries",
                               1, directory = "TARGETDIR")


More information about the Python-checkins mailing list