Changeset 6119
- Timestamp:
- Jan 6, 2009, 11:36:24 AM (16 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/utilities/numerical_tools.py
r5897 r6119 384 384 385 385 386 if __name__ == "__main__":386 if __name__ == '__main__': 387 387 pass 388 388 -
anuga_core/source/anuga/utilities/polygon.py
r6116 r6119 969 969 #Initialise module 970 970 971 from anuga.utilities .compile import can_use_C_extension972 if c an_use_C_extension('polygon_ext.c'):971 from anuga.utilities import compile 972 if compile.can_use_C_extension('polygon_ext.c'): 973 973 # Underlying C implementations can be accessed 974 974 from polygon_ext import _point_on_line -
misc/tools/dependency_graphs/anuga_depgraph2dot.py
r6118 r6119 29 29 30 30 if s=='__main__': 31 # references *to* __main__ are never interesting. omitting them means32 # that mainfloats to the top of the page33 return 131 # references *to* __main__ are never interesting. 32 # Omitting them means that __main__ floats to the top of the page 33 return True 34 34 35 35 #if type in [imp.PY_SOURCE, imp.C_EXTENSION] and s.startswith('anuga'): 36 36 if type in [imp.PY_SOURCE, imp.PKG_DIRECTORY] and s.startswith('anuga'): 37 #if type in [imp.PKG_DIRECTORY] and s.startswith('anuga'):38 37 # Only consider ANUGA source modules and packages 39 38
Note: See TracChangeset
for help on using the changeset viewer.