4 # Cython -- Main Program, generic
7 if __name__
== '__main__':
12 # Make sure we import the right Cython
13 cythonpath
, _
= os
.path
.split(os
.path
.realpath(__file__
))
14 sys
.path
.insert(0, cythonpath
)
16 from Cython
.Compiler
.Main
import main
17 main(command_line
= 1)
20 # Void cython.* directives.
21 from Cython
.Shadow
import *
22 ## and bring in the __version__
23 from Cython
import __version__