Closed GoogleCodeExporter closed 8 years ago
Hmm, this is interesting. I've never used py2exe before. pythonapi is a handle
in
ctypes that points to the Python API library. Below is the code in lines
436-441 in
file ctypes/__init__.py:
if _os.name in ("nt", "ce"):
pythonapi = PyDLL("python dll", None, _sys.dllhandle)
elif _sys.platform == "cygwin":
pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2])
else:
pythonapi = PyDLL(None)
Is there any difference between the Python API library loaded in python and the
one
loaded in py2exe?
Original comment by pmtri80@gmail.com
on 14 May 2009 at 1:02
Strangely enough, I could not reproduce the bug with py2exe version 0.6.9. I
guess it
must have been py2exe's bug.
Minh Tri
Original comment by pmtri80@gmail.com
on 18 Jul 2009 at 5:01
Original issue reported on code.google.com by
kpo...@gmail.com
on 13 May 2009 at 9:59