Changeset 3b8b25c95f70a17b7e25553124bf068268dafb8b

Show
Ignore:
Timestamp:
11/01/08 23:36:33 (2 months ago)
Author:
njs@…
Branch:
org.vorpus.parti
Parent:
348ffaf1ecedadbadac46573bc4e6958db701fa5
Child:
c224b310221ca01c06bf3616c91b260ff9c91b18
Message:

librarify make_constants_pxi.py

Files:
2 modified
1 moved

Legend:

Unmodified
Added
Removed
  • /do-build

    r89cc.. r3b8b..  
    33set -e 
    44rm -rf build install 
    5 python make-constants-pxi.py wimpiggy/lowlevel/constants.txt wimpiggy/lowlevel/constants.pxi 
     5python make_constants_pxi.py wimpiggy/lowlevel/constants.txt wimpiggy/lowlevel/constants.pxi 
    66CFLAGS=-O0 python setup.py install --home=install 
  • /make_constants_pxi.py

    r480d.. r3b8b..  
    88        sys.exit(2) 
    99    (constants_path, pxi_path) = args 
     10    make_constants_pxi(constants_path, pxi_path) 
     11 
     12def make_constants_pxi(constants_path, pxi_path): 
    1013    constants = [] 
    1114    for line in open(constants_path):