source:
branches/numpy/anuga/advection/__init__.py
@
6553
Last change on this file since 6553 was 5242, checked in by , 17 years ago | |
---|---|
File size: 293 bytes |
Line | |
---|---|
1 | """Make directory available as a Python package |
2 | """ |
3 | |
4 | # Add path of package to PYTHONPATH to allow C-extensions to be loaded |
5 | import sys |
6 | sys.path += __path__ |
7 | |
8 | # Make selected classes available directly |
9 | from advection import Domain,\ |
10 | Transmissive_boundary, Dirichlet_boundary |
11 | |
12 | |
13 |
Note: See TracBrowser
for help on using the repository browser.