summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-05-04 15:57:32 (GMT)
committerJason R. Coombs <jaraco@jaraco.com>2016-05-04 15:57:32 (GMT)
commit422cf2b4adaf8a5d69f2baf10becbe341d3ab2a4 (patch)
tree8e960de6afc61641207ff37badfae512e0f91aa6 /Misc
parent290fed43d9cdcd3d738dda319e63e26d7972d734 (diff)
downloadcpython-422cf2b4adaf8a5d69f2baf10becbe341d3ab2a4.zip
cpython-422cf2b4adaf8a5d69f2baf10becbe341d3ab2a4.tar.gz
cpython-422cf2b4adaf8a5d69f2baf10becbe341d3ab2a4.tar.bz2
Issue #20120: Use RawConfigParser for .pypirc parsing, removing support for interpolation unintentionally added with move to Python 3. Behavior no longer does any interpolation in .pypirc files, matching behavior in Python 2.7 and Setuptools 19.0.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 86b9789..2993c66 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,12 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #20120: Use RawConfigParser for .pypirc parsing,
+ removing support for interpolation unintentionally added
+ with move to Python 3. Behavior no longer does any
+ interpolation in .pypirc files, matching behavior in Python
+ 2.7 and Setuptools 19.0.
+
- Issue #26659: Make the builtin slice type support cycle collection.
- Issue #26718: super.__init__ no longer leaks memory if called multiple times.