summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-09-13 04:46:40 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-09-13 04:46:40 (GMT)
commit016af3f4d484d0e4f756bf0a505d0df3cbc444ed (patch)
treefd5b3ca3673f8e47ce432a12ef54977f1debe7f1 /Misc
parentd184f664e38047edebfc879b10b8190f96a82ca7 (diff)
downloadcpython-016af3f4d484d0e4f756bf0a505d0df3cbc444ed.zip
cpython-016af3f4d484d0e4f756bf0a505d0df3cbc444ed.tar.gz
cpython-016af3f4d484d0e4f756bf0a505d0df3cbc444ed.tar.bz2
Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL,
if all necessary functions are already found in libuuid. Patch by Evgeny Sologubov.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index db01d14..b649f7f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1160,6 +1160,7 @@ Rafal Smotrzyk
Eric Snow
Dirk Soede
Paul Sokolovsky
+Evgeny Sologubov
Cody Somerville
Edoardo Spadolini
Clay Spence
diff --git a/Misc/NEWS b/Misc/NEWS
index dcd9754..3d9f24d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,6 +68,10 @@ Core and Builtins
Library
-------
+- Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL,
+ if all necessary functions are already found in libuuid.
+ Patch by Evgeny Sologubov.
+
- Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in
the _sre module.