Bugs item #1003067, was opened at 2004-08-03 23:13
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=1003067&group_id=78018
Category: pythonwin
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Michael Bax (mrbax)
Assigned to: Nobody/Anonymous (nobody)
Summary: Post-install script DLL load failed: pywintypes23.dll, Win95
Initial Comment:
The post-install script fails with an error when attempting to load
pywintypes23.dll.
This happens with pywin32 version 200, 201.1 and 202 with Python
2.3 under Windows 95a.
Manually copying pywintypes23.dll to the WINDOWS and
WINDOWS\SYSTEM directories did not help.
This is the error:
python pywin32_postinstall.py -install
Creating .PTH file E:\PYTHON23\pywin32.pth
Traceback (most recent call last):
File "E:\PYTHON23\Scripts\pywin32_postinstall.py", line 313, in ?
install()
File "E:\PYTHON23\Scripts\pywin32_postinstall.py", line 155, in
install
LoadSystemModule(lib_dir, "pywintypes")
File "E:\PYTHON23\Scripts\pywin32_postinstall.py", line 93, in
LoadSystemModule
('.dll', 'rb', imp.C_EXTENSION))
ImportError: DLL load failed: A device attached to the system is not
functioning.
The function call that fails is:
mod = imp.load_module( 'pywintypes', None,
'E:
\PYTHON23\Lib\site-packages\pywin32_system32\pywintypes23.dll'
('.dll', 'rb', imp.C_EXTENSION) )
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=1003067&group_id=78018
|