summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2012-02-15 15:28:20 (GMT)
committerÉric Araujo <merwok@netwok.org>2012-02-15 15:28:20 (GMT)
commite897a7472ded10a29ffcf046d021cd7fdc1ac94e (patch)
treef1a83069fc024d6c09f7a538a1c663b341ec62e5 /Misc
parent65d36dab4d915eb9fada52b867301b546e840fae (diff)
downloadcpython-e897a7472ded10a29ffcf046d021cd7fdc1ac94e.zip
cpython-e897a7472ded10a29ffcf046d021cd7fdc1ac94e.tar.gz
cpython-e897a7472ded10a29ffcf046d021cd7fdc1ac94e.tar.bz2
Fix parsing of build_ext --libraries option (#1326113)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7fc224a..474609e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -102,6 +102,9 @@ Library
- Issue #13979: A bug in ctypes.util.find_library that caused
the wrong library name to be returned has been fixed.
+- Issue #1326113: distutils' build_ext command --libraries option now
+ correctly parses multiple values separated by whitespace or commas.
+
- Issue #13993: HTMLParser is now able to handle broken end tags.
- Issue #13960: HTMLParser is now able to handle broken comments.