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?
#!/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
# 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)