Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / third_party / cython / src / cython.py
blobbcc2d8667ad37190f39010c9ed280d3965a44a2f
1 #!/usr/bin/env python
4 # Cython -- Main Program, generic
7 if __name__ == '__main__':
9 import os
10 import sys
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)
19 else:
20 # Void cython.* directives.
21 from Cython.Shadow import *
22 ## and bring in the __version__
23 from Cython import __version__