This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rfk
Recipients rfk, theller
Date 2009-01-08.00:43:30
SpamBayes Score 0.010060281
Marked as misclassified No
Message-id <1231375416.63.0.958079386255.issue4875@psf.upfronthosting.co.za>
In-reply-to
Content
On win32, ctypes.util.find_library uses os.path.exists() to check for
potential library files.  This means it is quite happy to return a
directory instead of a file, if one happens to exist with the
appropriate name somewhere in the search path.  Can this please be
changed to use os.path.isfile() instead of os.path.exists()?
History
Date User Action Args
2009-01-08 00:43:37rfksetrecipients: + rfk, theller
2009-01-08 00:43:36rfksetmessageid: <1231375416.63.0.958079386255.issue4875@psf.upfronthosting.co.za>
2009-01-08 00:43:34rfklinkissue4875 messages
2009-01-08 00:43:33rfkcreate