[Python-checkins] cpython (merge 3.3 -> default): Closes #19349: Merged fix from 3.3.

vinay.sajip python-checkins at python.org
Thu Oct 31 19:45:02 CET 2013


http://hg.python.org/cpython/rev/e97d9926da83
changeset:   86815:e97d9926da83
parent:      86813:a3c68d919cd1
parent:      86814:731bdec35fdd
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Thu Oct 31 18:44:48 2013 +0000
summary:
  Closes #19349: Merged fix from 3.3.

files:
  Lib/venv/__init__.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py
--- a/Lib/venv/__init__.py
+++ b/Lib/venv/__init__.py
@@ -345,7 +345,7 @@
     elif not hasattr(sys, 'base_prefix'):
         compatible = False
     if not compatible:
-        raise ValueError('This script is only for use with Python 3.3')
+        raise ValueError('This script is only for use with Python >= 3.3')
     else:
         import argparse
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list