From: Dag Sverre Seljebotn <dagss@student.matnat.uio.no> Date: Wed, 6 Apr 2011 18:45:51 +0000 (+0200) Subject: Revert "BUG Make sure bin/cython imports the right Cython module" X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b0547937bdbf6f9d5856d29cdaadbb50a3f3b64d;p=cython.git 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? --- 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)