summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authormrh1997 <robert.hoelzl@posteo.de>2023-02-05 17:36:57 (GMT)
committerGitHub <noreply@github.com>2023-02-05 17:36:57 (GMT)
commitf7e9fbacb250ad9df95d0024161b40dfdc9cc39e (patch)
tree5451f3cff3d0f30dc567788af2be7e9012957312 /Misc
parent90d85a9b4136aa1feb02f88aab614a3c29f20ed3 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2018-05-21-17-18-00.gh-issue-77772.Fhg84L.rst3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 74abceb..d27d60f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -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.