summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2013-06-30 21:08:27 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2013-06-30 21:08:27 (GMT)
commit893c7e782927f0282ae371f0a48505be66f32193 (patch)
tree738bbeebde68b2ea944ebcecea83128e08e6e39e /Misc
parent14c4799581af0f9ec12b06ce2c59a6bd3676c9ee (diff)
parent61d003a8f147a99c22a63f9e259631e51dd66970 (diff)
downloadcpython-893c7e782927f0282ae371f0a48505be66f32193.zip
cpython-893c7e782927f0282ae371f0a48505be66f32193.tar.gz
cpython-893c7e782927f0282ae371f0a48505be66f32193.tar.bz2
Closes #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 e829e72..ce0db00 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -135,6 +135,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.