diff options
author | mrh1997 <robert.hoelzl@posteo.de> | 2023-02-05 17:36:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 17:36:57 (GMT) |
commit | f7e9fbacb250ad9df95d0024161b40dfdc9cc39e (patch) | |
tree | 5451f3cff3d0f30dc567788af2be7e9012957312 /Misc | |
parent | 90d85a9b4136aa1feb02f88aab614a3c29f20ed3 (diff) | |
download | cpython-f7e9fbacb250ad9df95d0024161b40dfdc9cc39e.zip cpython-f7e9fbacb250ad9df95d0024161b40dfdc9cc39e.tar.gz cpython-f7e9fbacb250ad9df95d0024161b40dfdc9cc39e.tar.bz2 |
bpo-33591: Add support for path like objects to `ctypes.CDLL` (#7032)
Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-05-21-17-18-00.gh-issue-77772.Fhg84L.rst | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -754,6 +754,7 @@ Tim Hochberg Benjamin Hodgson Joerg-Cyril Hoehle Douwe Hoekstra +Robert Hoelzl Gregor Hoffleit Chris Hoffman Tim Hoffmann diff --git a/Misc/NEWS.d/next/Library/2018-05-21-17-18-00.gh-issue-77772.Fhg84L.rst b/Misc/NEWS.d/next/Library/2018-05-21-17-18-00.gh-issue-77772.Fhg84L.rst new file mode 100644 index 0000000..3a7c6d4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-05-21-17-18-00.gh-issue-77772.Fhg84L.rst @@ -0,0 +1,3 @@ +:class:`ctypes.CDLL`, :class:`ctypes.OleDLL`, :class:`ctypes.WinDLL`, +and :class:`ctypes.PyDLL` now accept :term:`path-like objects +<path-like object>` as their ``name`` argument. Patch by Robert Hoelzl. |