summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2013-06-30 22:06:52 +0100
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2013-06-30 22:06:52 +0100
commit61d003a8f147a99c22a63f9e259631e51dd66970 (patch)
treef0e689fc66778ac7a429a41aad780cc059a566c2 /Misc
parent56fe854a77614431320f38f1b9a0a84625974dd9 (diff)
downloadcpython-git-61d003a8f147a99c22a63f9e259631e51dd66970.tar.gz
Issue #18224: Removed pydoc script from created venv, as it causes problems on Windows and adds no value over and above python -m pydoc ...
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 884ae94dde..17d8f601a2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,9 @@ Core and Builtins
Library
-------
+- Issue #18224: Removed pydoc script from created venv, as it causes problems
+ on Windows and adds no value over and above python -m pydoc ...
+
- Issue #18155: The csv module now correctly handles csv files that use
a delimter character that has a special meaning in regexes, instead of
throwing an exception.