-
All builded applications write:
[code]
F:\...y2exe\py2exe\samples\simple\dist>hello.exe
Can't create process, ErrCode=0x000000C1, Description:
Command to be executed:
F:\Lang\sf.net\svn\py2exe\py2exe\samples\simple\dist\hello.exe
Press Enter to exit...
[/code]
My environment:
Os Windows Vista Home Basic Ru + sp2
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02...
2009-10-07 08:41:12 UTC by shura_zam
-
By default, py2exe will only look under site-packages/_xmlplus for xml modules if PyXML is installed.A problem occurs if the module in question only exists in the built-in xml module (e.g. xml.etree).
This patch catches ImportErrors associated with xml, checks that is was looking under _xmlplus, and re-tries by forcing py2exe to look under the built-in xml directory.
2009-09-25 03:38:45 UTC by fiona14
-
theller committed revision 687 to the py2exe SVN repository, changing 2 files.
2009-08-14 19:43:50 UTC by theller
-
I used pymssql extention for my python script to connect MSSQL.
[code]
import pymssql
import sys, time
def main():
try:
conerp = pymssql.connect(host='127.0.0.1,1433', user='sa', password='', database='tempdb')
conerp.close()
time.sleep(5)
except Exception :
print 'Connect Error'
sys.exit(1)
if __name__ == '__main__':
main()
[/code]
Runing the .exe file...
2009-08-12 01:40:58 UTC by nobody