--- C:\Users\Wietse\Downloads\python\virtualenv-1.7\virtualenv.py 2011-11-30 12:49:27.000000000 +0100 +++ C:\Python32\Lib\site-packages\virtualenv-1.7-py3.2.egg\virtualenv.py 2012-01-06 15:37:36.062397000 +0100 @@ -50,6 +50,7 @@ is_pypy = hasattr(sys, 'pypy_version_info') is_win = (sys.platform == 'win32') abiflags = getattr(sys, 'abiflags', '') +can_symlink = not is_win user_dir = os.path.expanduser('~') if sys.platform == 'win32': @@ -406,7 +407,7 @@ else: shutil.copy2(src, dest) -def copyfile(src, dest, symlink=True): +def copyfile(src, dest, symlink=can_symlink): if not os.path.exists(src): # Some bad symlink in the src logger.warn('Cannot find file %s (bad symlink)', src)