pywintypes26.dll contains a bogus embedded manifest:
The dependency part being empty.
When using pyInstaller to create a .exe from a python script, 2 dll are mandatory: python26.dll and pywintypes26.dll. python26.dll has a dependency on the C run time library, which is correctly embedded. The bogus manifest of pywintypes26.dll makes a pop up appear when running the executable created by pyInstaller:
Runtime Error!
R6034
An application has made an attempt to load the C runtime library incorrectly.
Would it be possible to remove the bogus embedded manifest from pywintypes26.dll? The file available from pywin32 distribution on SourceForge does not contain any manifest and using that manifest free dll fixes the problem (the error R6034 goes away).
I do not know if there are other dll with bogus embedded manifest, I only found that one.