Issue 19349: Not so correct exception message when running venv (original) (raw)
In Lib/venv/init.py, line 348:
raise ValueError('This script is only for use with Python 3.3')
But I am running Python 3.4. Attached the patch to make it better.
raise ValueError('This script is only for use with Python >= 3.3')
If you feel it does not feel right, any suggestions? "...Python 3.3 and above", "...at least Python 3.3"?