source: trunk/anuga_core/source/anuga/caching/__init__.py @ 9562

Last change on this file since 9562 was 9562, checked in by steve, 9 years ago

Moving test folders to tests foldersy

File size: 404 bytes
Line 
1"""
2    Generic caching module.
3   
4    Allows for the disk caching of the results of any function. If a function
5    is cached, its return values will be stored on the local hard drive.
6    If the function is called with identical parameters in the future, the
7    cached result will be returned.
8"""
9
10from caching import *
11
12
13from numpy.testing import Tester
14test = Tester().test
15
16
17
18
Note: See TracBrowser for help on using the repository browser.