From ecdc076695bbe138a456a359c168c19e8e3de147 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Tue, 29 May 2012 11:12:43 +0100 Subject: Removed pysetup3.exe executable. --- Lib/venv/scripts/nt/pysetup3-script.py | 11 ----------- Lib/venv/scripts/nt/pysetup3.exe | Bin 6144 -> 0 bytes Lib/venv/scripts/nt/pysetup3.py | 11 +++++++++++ 3 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644 Lib/venv/scripts/nt/pysetup3-script.py delete mode 100644 Lib/venv/scripts/nt/pysetup3.exe create mode 100644 Lib/venv/scripts/nt/pysetup3.py diff --git a/Lib/venv/scripts/nt/pysetup3-script.py b/Lib/venv/scripts/nt/pysetup3-script.py deleted file mode 100644 index cfc6661..0000000 --- a/Lib/venv/scripts/nt/pysetup3-script.py +++ /dev/null @@ -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) diff --git a/Lib/venv/scripts/nt/pysetup3.exe b/Lib/venv/scripts/nt/pysetup3.exe deleted file mode 100644 index 3f3c09e..0000000 Binary files a/Lib/venv/scripts/nt/pysetup3.exe and /dev/null differ diff --git a/Lib/venv/scripts/nt/pysetup3.py b/Lib/venv/scripts/nt/pysetup3.py new file mode 100644 index 0000000..cfc6661 --- /dev/null +++ b/Lib/venv/scripts/nt/pysetup3.py @@ -0,0 +1,11 @@ +#!__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) -- cgit v0.12