summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2009-05-05 18:59:30 (GMT)
committerThomas Heller <theller@ctypes.org>2009-05-05 18:59:30 (GMT)
commit54e024862a09bda1c30b721c2f1dcac7f45ca69a (patch)
tree96cd62d6ad32d6f34255bdd778b8bdbfaca2a875 /Lib
parent04e190779b1c6a5f36ad12a2009ad078cf4944d5 (diff)
downloadcpython-54e024862a09bda1c30b721c2f1dcac7f45ca69a.zip
cpython-54e024862a09bda1c30b721c2f1dcac7f45ca69a.tar.gz
cpython-54e024862a09bda1c30b721c2f1dcac7f45ca69a.tar.bz2
Merged revisions 72352 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72352 | thomas.heller | 2009-05-05 20:55:47 +0200 (Di, 05 Mai 2009) | 3 lines Fix Issue #4875: find_library can return directories instead of files (on win32) ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ctypes/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py
index 433d0d9..35b0b1e 100644
--- a/Lib/ctypes/util.py
+++ b/Lib/ctypes/util.py
@@ -52,12 +52,12 @@ if os.name == "nt":
# See MSDN for the REAL search order.
for directory in os.environ['PATH'].split(os.pathsep):
fname = os.path.join(directory, name)
- if os.path.exists(fname):
+ if os.path.isfile(fname):
return fname
if fname.lower().endswith(".dll"):
continue
fname = fname + ".dll"
- if os.path.exists(fname):
+ if os.path.isfile(fname):
return fname
return None