File: pythonX.Y-pyrexc

package info (click to toggle)
pyrex 0.9.9-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,556 kB
  • ctags: 2,601
  • sloc: python: 12,966; ansic: 3,092; makefile: 106; sh: 20; lisp: 12
file content (7 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
#! /bin/sh
if which python#VERS# > /dev/null; then
  exec python#VERS# -c 'from Pyrex.Compiler.Main import main; main(command_line = 1)' $*
else
  echo python#VERS# not found
  exit 1
fi