> What I mean is I think that 13/12/09 patch does not its work correctly (well > I think) since usually a C_extension module outputs: >> I: Analyzing C:\Python26\lib\site-packages\XXXXX.pyd >> I: Dependent assemblies of C:\Python26\lib\site-packages\XXXXX.pyd: >> I: x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_none
You'll never see output like that when _math.pyd is analyzed because it does not have any dependent assemblies. Actually its embedded manifest is malformed (it contains an empty dependentAssembly element - the 13/12 patch works around this issue by ignoring the incomplete part). You definitely need to use the 13/12 patch, also because of the other error that was fixed (possibility of assembly files without manifest slipping in). Regards, Florian -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
