diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -1,11 +1,10 @@ """ Test harness for the venv module. -Copyright (C) 2011-2012 Vinay Sajip. +Tests for the interpreter's behavior in a virtual env are in XXX. """ import os -import os.path import shutil import sys import tempfile diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py --- a/Lib/venv/__init__.py +++ b/Lib/venv/__init__.py @@ -1,8 +1,6 @@ """ Virtual environment (venv) package for Python. Based on PEP 405. -Copyright (C) 20011-2012 Vinay Sajip. All Rights Reserved. - usage: python -m venv [-h] [--system-site-packages] [--symlinks] [--clear] [--upgrade] ENV_DIR [ENV_DIR ...] @@ -24,6 +22,10 @@ optional arguments: --upgrade Upgrade the environment directory to use this version of Python, assuming Python has been upgraded in-place. """ + +# Inspired by virtualenv by Ian Bicking, Carl Meyer and others, written by +# Vinay Sajip. Licensed to PSF under a Contributor Agreement. + import base64 import io import logging @@ -346,8 +348,7 @@ def main(args=None): elif not hasattr(sys, 'base_prefix'): compatible = False if not compatible: - raise ValueError('This script is only for use with ' - 'Python 3.3 (pythonv variant)') + raise ValueError('This script is only for use with Python 3.3') else: import argparse