Cython has moved to github.

cython-devel

view bin/cython.bat @ 907:e6bad90a921e

Better cython script for windows

Starting Cython from Windows PowerShell? with

cython.py <arguments>

yields a new console window with Cython output, which closes immedeately after Cython finished. To get Cython's output one would always have to write something like

python C:\Python25\Scripts\cython.py <arguments>

Therefore, i wrote a simple batch file that does fairly the same as cython.py and allows you to start cython simply via

cython <arguments>
author marcus@bitzl.com
date Sat Aug 02 22:44:42 2008 -0700 (3 years ago)
parents
children
line source
1 @REM Start cython from windows commandline as "cython", not "cython.py".
2 @REM This is especially useful for windows power shell, as no extra window
3 @REM is used.
5 @echo OFF
6 python -c "from Cython.Compiler.Main import main; main(command_line = 1)" %*