diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-13 04:46:40 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-13 04:46:40 (GMT) |
commit | 016af3f4d484d0e4f756bf0a505d0df3cbc444ed (patch) | |
tree | fd5b3ca3673f8e47ce432a12ef54977f1debe7f1 /Misc | |
parent | d184f664e38047edebfc879b10b8190f96a82ca7 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -1160,6 +1160,7 @@ Rafal Smotrzyk Eric Snow Dirk Soede Paul Sokolovsky +Evgeny Sologubov Cody Somerville Edoardo Spadolini Clay Spence @@ -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. |