Removed pysetup3.exe executable.

This commit is contained in:
Vinay Sajip 2012-05-29 11:12:43 +01:00
parent 52209d3a1e
commit ecdc076695
2 changed files with 0 additions and 0 deletions

View file

@ -1,11 +0,0 @@
#!__VENV_PYTHON__
if __name__ == '__main__':
rc = 1
try:
import sys, re, packaging.run
sys.argv[0] = re.sub('-script.pyw?$', '', sys.argv[0])
rc = packaging.run.main() # None interpreted as 0
except Exception:
# use syntax which works with either 2.x or 3.x
sys.stderr.write('%s\n' % sys.exc_info()[1])
sys.exit(rc)