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 eryksun
Recipients Arfrever, Piotr.Lopusiewicz, amaury.forgeotdarc, brian.curtin, bwanamarko, docs@python, eryksun, loewis, meador.inge, plynch76, r.david.murray, tim.golden
Date 2016-02-16.09:05:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455613554.92.0.791058918113.issue14597@psf.upfronthosting.co.za>
In-reply-to
Content
The _ctypes extension module provides dlclose on POSIX and FreeLibrary on Windows. For the reasons already stated in this issue, ctypes should not automatically call these functions, but maybe they should be documented and imported to the ctypes module instead of being buried in the private _ctypes extension module. You could also implement them with ctypes itself, but the existing functions in the _ctypes module already set a proper exception if the call fails and properly use pointers (an HMODULE is a pointer).
History
Date User Action Args
2016-02-16 09:05:55eryksunsetrecipients: + eryksun, loewis, amaury.forgeotdarc, tim.golden, Arfrever, r.david.murray, brian.curtin, meador.inge, docs@python, plynch76, bwanamarko, Piotr.Lopusiewicz
2016-02-16 09:05:54eryksunsetmessageid: <1455613554.92.0.791058918113.issue14597@psf.upfronthosting.co.za>
2016-02-16 09:05:54eryksunlinkissue14597 messages
2016-02-16 09:05:54eryksuncreate