From b0547937bdbf6f9d5856d29cdaadbb50a3f3b64d Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Wed, 6 Apr 2011 20:45:51 +0200 Subject: [PATCH] Revert "BUG Make sure bin/cython imports the right Cython module" This reverts commit af902b506b2162d6d8bff345be4d060398c8a45b. As I was told: Please remember that 'bin/cython' is the script that gets installed in '/usr/bin'. Why should '/usr' git injected in sys.path? --- bin/cygdb | 6 ------ bin/cython | 8 -------- 2 files changed, 14 deletions(-) diff --git a/bin/cygdb b/bin/cygdb index a980f6a0..7f2d57f5 100755 --- a/bin/cygdb +++ b/bin/cygdb @@ -1,12 +1,6 @@ #!/usr/bin/env python import sys -import os - -# Make sure we import the right Cython -binpath, _ = os.path.split(os.path.realpath(__file__)) -cythonpath, _ = os.path.split(binpath) -sys.path.insert(0, cythonpath) from Cython.Debugger import Cygdb as cygdb diff --git a/bin/cython b/bin/cython index 094beed4..2acad0d0 100755 --- a/bin/cython +++ b/bin/cython @@ -4,13 +4,5 @@ # Cython -- Main Program, Unix # -import os -import sys - -# Make sure we import the right Cython -binpath, _ = os.path.split(os.path.realpath(__file__)) -cythonpath, _ = os.path.split(binpath) -sys.path.insert(0, cythonpath) - from Cython.Compiler.Main import main main(command_line = 1) -- 2.26.2