Closes #18224: Removed pydoc script from created venv, as it causes problems on Windows and adds no value over and above python -m pydoc ...

This commit is contained in:
Vinay Sajip 2013-06-30 22:08:27 +01:00
commit 893c7e7829
3 changed files with 3 additions and 9 deletions

View file

@ -1,4 +0,0 @@
#!__VENV_PYTHON__
if __name__ == '__main__':
import sys, pydoc
sys.exit(pydoc.cli())

View file

@ -1,5 +0,0 @@
#!__VENV_PYTHON__
if __name__ == '__main__':
import sys, pydoc
sys.exit(pydoc.cli())

View file

@ -135,6 +135,9 @@ Core and Builtins
Library 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 - Issue #18155: The csv module now correctly handles csv files that use
a delimter character that has a special meaning in regexes, instead of a delimter character that has a special meaning in regexes, instead of
throwing an exception. throwing an exception.