Changeset 1922


Ignore:
Timestamp:
Oct 14, 2005, 12:02:18 PM (19 years ago)
Author:
duncan
Message:

fix compile bug

Location:
inundation/pyvolution
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • inundation/pyvolution/quantity.py

    r1916 r1922  
    11951195
    11961196
    1197 import compile
     1197from utilities import compile
    11981198if compile.can_use_C_extension('quantity_ext.c'):
    11991199    #Replace python version with c implementations
  • inundation/pyvolution/shallow_water.py

    r1870 r1922  
    17591759
    17601760
    1761 import compile
     1761from utilities import compile
    17621762if compile.can_use_C_extension('shallow_water_ext.c'):
    17631763    #Replace python version with c implementations
  • inundation/pyvolution/sparse.py

    r1849 r1922  
    370370
    371371#Setup for C extensions
    372 import compile
     372from utilities import compile
    373373if compile.can_use_C_extension('sparse_ext.c'):
    374374    #Replace python version with c implementation
  • inundation/pyvolution/util.py

    r1919 r1922  
    552552#Initialise module
    553553
    554 import compile
     554from utilities import compile
    555555if compile.can_use_C_extension('util_ext.c'):
    556556    from util_ext import gradient, gradient2#, point_on_line
Note: See TracChangeset for help on using the changeset viewer.