summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-02-04 00:25:11 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-02-04 00:25:11 (GMT)
commitcfe34744e3c785a56525ab8a9473336206f5854d (patch)
tree0b4031608086e22686616345b80c5ed6cf4792ad /Misc
parent7a34f02f9e651e8d021ceb759af102d9043b5a5b (diff)
downloadcpython-cfe34744e3c785a56525ab8a9473336206f5854d.zip
cpython-cfe34744e3c785a56525ab8a9473336206f5854d.tar.gz
cpython-cfe34744e3c785a56525ab8a9473336206f5854d.tar.bz2
fix find_library on Solaris (closes #5289)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 17faa8f..2828a8b 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1250,6 +1250,7 @@ Richard Walker
Larry Wall
Kevin Walzer
Rodrigo Steinmuller Wanderley
+Ke Wang
Greg Ward
Zachary Ware
Barry Warsaw
diff --git a/Misc/NEWS b/Misc/NEWS
index 6f8084e..97e391e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -163,6 +163,8 @@ Core and Builtins
Library
-------
+- Issue #5289: Fix ctypes.util.find_library on Solaris.
+
- Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying
stream or a decoder produces data of an unexpected type (i.e. when
io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec).