source: branches/numpy_misc/tools/acceptance_tests/mandelbrot/compile_mandelbrot_c_extensions.py @ 7244

Last change on this file since 7244 was 6996, checked in by rwilson, 16 years ago

Changes to allow for python 2.4 and 2.5 testing.

  • Property svn:executable set to *
File size: 236 bytes
Line 
1#!/usr/bin/env python
2
3"""This module will compile the necessary c-extensions for the mandelbrot demos
4"""
5
6import os
7
8s = 'python compile.py mandel_ext.c'
9print
10os.system(s)
11
12s = 'python compile.py mandelplot_ext.c'
13print
14os.system(s)
Note: See TracBrowser for help on using the repository browser.