[issue16283] ctypes.util.find_library does not find all DLLs anymore

2017-05-13 Thread Eryk Sun
Changes by Eryk Sun : -- status: pending -> closed ___ Python tracker ___ ___

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2017-05-13 Thread Eryk Sun
Changes by Eryk Sun : -- resolution: -> out of date stage: -> resolved status: open -> pending ___ Python tracker ___

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2017-05-13 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2017-05-13 Thread Sophist
Sophist added the comment: http://stackoverflow.com/questions/23125857/python-os-path-exists-cant-locate-the-file-however-the-file-indeed-exsits gave me an explanation: That when running 32-bit apps on Win 64 C:\Windows\SysWOW64 is mapped to C:\Windows\system32. Copying the missing DLL to

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2017-05-13 Thread Sophist
Changes by Sophist : -- versions: -Python 3.7 ___ Python tracker ___ ___

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2017-05-13 Thread Sophist
Changes by Sophist : -- versions: +Python 2.7, Python 3.4, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker ___

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2017-05-13 Thread Sophist
Sophist added the comment: Finding it impossible for PIP to install discid. Tracked it down to this issue i.e. os.path.isfile('C:\Windows\system32\discid.dll') == False when the dll exists. Some other dlls in that directory result in True and some in False. I cannot see any significant

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2014-07-16 Thread Mark Lawrence
Mark Lawrence added the comment: Works fine for me. Python build: 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:38:22) [MSC v.1600 32 bit (Intel)] Path 'C:\Windows\system32' exists in $PATH: True File 'C:\Windows\system32\acledit.dll' exists: True ctypes says for 'acledit.dll':

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2013-01-04 Thread vyrus
Changes by vyrus piq...@gmail.com: -- nosy: +loewis, vyrus ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16283 ___ ___ Python-bugs-list mailing

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2012-12-28 Thread Meador Inge
Changes by Meador Inge mead...@gmail.com: -- nosy: +meador.inge ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16283 ___ ___ Python-bugs-list

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2012-10-19 Thread Marcus von Appen
New submission from Marcus von Appen: ctypes.util.find_library does not seem to be able to find certain libraries in Python3.3 on Win32 platforms anymore, if the library suffix is omitted. For some reason, os.path.isfile() in ctypes.util.find_library returns False in those cases. Please try