source:
trunk/anuga_work/development/2010-projects/anuga_1d/sww-sudi/error.py
@
8427
Last change on this file since 8427 was 8427, checked in by , 13 years ago | |
---|---|
File size: 192 bytes |
Line | |
---|---|
1 | ## module error |
2 | ''' err(string). |
3 | Prints 'string' and terminates program. |
4 | ''' |
5 | import sys |
6 | def err(string): |
7 | print string |
8 | raw_input('Press return to exit') |
9 | sys.exit() |
Note: See TracBrowser
for help on using the repository browser.