summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2012-02-15 16:25:25 (GMT)
committerÉric Araujo <merwok@netwok.org>2012-02-15 16:25:25 (GMT)
commit4575afcb53db638232d897aed5e84bb629fc1ecf (patch)
tree5ba0a51e5cedde4b0f29731512b2c745c6775913 /Misc/NEWS
parent1d175f776836ef0106d06ff2f264635df125340e (diff)
downloadcpython-4575afcb53db638232d897aed5e84bb629fc1ecf.zip
cpython-4575afcb53db638232d897aed5e84bb629fc1ecf.tar.gz
cpython-4575afcb53db638232d897aed5e84bb629fc1ecf.tar.bz2
Fix parsing of packaging’s build_ext --libraries option (#1326113)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1e67160..faef50a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -472,8 +472,9 @@ Library
- Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
Patch by Suman Saha.
-- Issue #1326113: distutils' build_ext command --libraries option now
- correctly parses multiple values separated by whitespace or commas.
+- Issue #1326113: distutils' and packaging's build_ext commands option now
+ correctly parses multiple values (separated by whitespace or commas) given
+ to their --libraries option.
- Issue #10287: nntplib now queries the server's CAPABILITIES first before
sending MODE READER, and only sends it if not already in READER mode.