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 santoso.wijaya
Recipients anacrolix, santoso.wijaya
Date 2011-06-29.01:09:39
SpamBayes Score 0.008066226
Marked as misclassified No
Message-id <1309309780.53.0.0716273205432.issue12437@psf.upfronthosting.co.za>
In-reply-to
Content
On Windows:

>>> try:
...     ctypes.CDLL('somelib')
... except OSError as exc:
...     print repr(exc)
...     print exc.errno
...
WindowsError(126, 'The specified module could not be found')
22
History
Date User Action Args
2011-06-29 01:09:40santoso.wijayasetrecipients: + santoso.wijaya, anacrolix
2011-06-29 01:09:40santoso.wijayasetmessageid: <1309309780.53.0.0716273205432.issue12437@psf.upfronthosting.co.za>
2011-06-29 01:09:40santoso.wijayalinkissue12437 messages
2011-06-29 01:09:39santoso.wijayacreate