blob: a325016947a60a1c192e2aa3629edc4c79d1628f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/python -O
#############################################################################
# File : compile.py
# Package : rpmlint
# Author : Frederic Lepied
# Created on : Sat Oct 23 23:40:21 1999
# Version : $Id$
# Purpose : byte compile all python files given in arguments.
#############################################################################
import py_compile
import sys
for f in sys.argv[2:]:
py_compile.compile(f, f+"o", sys.argv[1] + f)
# compile.py ends here
|