[Numpy-svn] r6191 - trunk/numpy/distutils

numpy-svn at scipy.org numpy-svn at scipy.org
Mon Dec 22 23:11:03 EST 2008


Author: cdavid
Date: 2008-12-22 22:10:59 -0600 (Mon, 22 Dec 2008)
New Revision: 6191

Modified:
   trunk/numpy/distutils/mingw32ccompiler.py
Log:
Fix typos in the comments for manifest.

Modified: trunk/numpy/distutils/mingw32ccompiler.py
===================================================================
--- trunk/numpy/distutils/mingw32ccompiler.py	2008-12-23 03:51:56 UTC (rev 6190)
+++ trunk/numpy/distutils/mingw32ccompiler.py	2008-12-23 04:10:59 UTC (rev 6191)
@@ -227,15 +227,19 @@
     #    raise DistutilsPlatformError, msg
     return
 
+#=====================================
+# Dealing with Visual Studio MANIFESTS
+#=====================================
+
 # Functions to deal with visual studio manifests. Manifest are a mechanism to
 # enforce strong DLL versioning on windows, and has nothing to do with
 # distutils MANIFEST. manifests are XML files with version info, and used by
-# the OS loader; they are necessary when linking against a DLL no in the system
-# path; in particular, python 2.6 is built against the MS runtime 9 (the one
-# from VS 2008), which is not available on most windows systems; python 2.6
-# installer does install it in the Win SxS (Side by side) directory, but this
-# requires the manifest too. This is a big mess, thanks MS for a wonderful
-# system.
+# the OS loader; they are necessary when linking against a DLL not in the
+# system path; in particular, official python 2.6 binary is built against the
+# MS runtime 9 (the one from VS 2008), which is not available on most windows
+# systems; python 2.6 installer does install it in the Win SxS (Side by side)
+# directory, but this requires the manifest for this to work. This is a big
+# mess, thanks MS for a wonderful system.
 
 # XXX: ideally, we should use exactly the same version as used by python, but I
 # have no idea how to obtain the exact version from python. We could use the




More information about the Numpy-svn mailing list