Commit b4bc5c4e authored by Vinay Sajip's avatar Vinay Sajip

Issue #18224: Removed pydoc script from created venv, as it causes problems on...

Issue #18224: Removed pydoc script from created venv, as it causes problems on Windows and adds no value over and above python -m pydoc ...
parent d1f53683
#!__VENV_PYTHON__
if __name__ == '__main__':
import sys, pydoc
sys.exit(pydoc.cli())
#!__VENV_PYTHON__
if __name__ == '__main__':
import sys, pydoc
sys.exit(pydoc.cli())
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment