summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2014-03-12 07:34:02 (GMT)
committerÉric Araujo <merwok@netwok.org>2014-03-12 07:34:02 (GMT)
commitfc773a2d4ba3810b982e703bf8a240206369e5d1 (patch)
tree7d1428117d5ec01e94cdba671e35755cf9462a3e /Misc
parented5d95b76bd9a3584038bf578bac8f473a47e4c4 (diff)
downloadcpython-fc773a2d4ba3810b982e703bf8a240206369e5d1.zip
cpython-fc773a2d4ba3810b982e703bf8a240206369e5d1.tar.gz
cpython-fc773a2d4ba3810b982e703bf8a240206369e5d1.tar.bz2
Avoid “error: None” messages from distutils (#4931).
Thanks to Amaury Forgeot d’Arc and Philip J. Eby.
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 7baa0f7..1dce0ea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Library
- Issue #20875: Prevent possible gzip "'read' is not defined" NameError.
Patch by Claudiu Popa.
+- Issue #4931: distutils should not produce unhelpful "error: None" messages
+ anymore. distutils.util.grok_environment_error is kept but doc-deprecated.
+
- Issue #20283: RE pattern methods now accept the string keyword parameters
as documented. The pattern and source keyword parameters are left as
deprecated aliases.