diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-04 15:57:32 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-04 15:57:32 (GMT) |
commit | 422cf2b4adaf8a5d69f2baf10becbe341d3ab2a4 (patch) | |
tree | 8e960de6afc61641207ff37badfae512e0f91aa6 /Misc/NEWS | |
parent | 290fed43d9cdcd3d738dda319e63e26d7972d734 (diff) | |
download | cpython-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/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. |