summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-09-10 03:22:48 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-09-10 03:22:48 (GMT)
commite6db7a3a298e3bfe5064de2298ba6cdcb470793e (patch)
treebec2b5049f20ce1f86dedb2d4c9af1a35b4f47f3 /Misc
parent6bbd775377ae4a6e87ccce990750ac02afe83573 (diff)
downloadcpython-e6db7a3a298e3bfe5064de2298ba6cdcb470793e.zip
cpython-e6db7a3a298e3bfe5064de2298ba6cdcb470793e.tar.gz
cpython-e6db7a3a298e3bfe5064de2298ba6cdcb470793e.tar.bz2
Fix determination of Metadata version in packaging (#8933).
Original patch by Filip Gruszczyński.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 67b8cf8..3d35823 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -274,9 +274,9 @@ Core and Builtins
Library
-------
-- Issue #8933: distutils' PKG-INFO files will now correctly report
- Metadata-Version: 1.1 instead of 1.0 if a Classifier or Download-URL field is
- present.
+- Issue #8933: distutils' PKG-INFO files and packaging's METADATA files will
+ now correctly report Metadata-Version: 1.1 instead of 1.0 if a Classifier or
+ Download-URL field is present.
- Issue #12567: Add curses.unget_wch() function. Push a character so the next
get_wch() will return it.