- Timestamp:
- 05/29/13 18:32:53 (3 years ago)
- Location:
- branches/decorate
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/decorate/memoize.py
r667 r669 3 3 """ 4 4 from functools import update_wrapper, wraps as functools_wraps 5 from rounding import deep_round, simple_round6 from archives import archive_dict7 from keymaps import stringmap8 from cache import _CacheInfo, inf_cache5 from mystic.math.rounding import deep_round, simple_round 6 from mystic.cache.archives import archive_dict 7 from mystic.cache.keymaps import stringmap 8 from mystic.cache import _CacheInfo, inf_cache 9 9 10 10 __all__ = ['memoize', 'memoized'] -
branches/decorate/surrogate.py
r667 r669 20 20 21 21 22 from safecache import inf_cache as memoized23 #from cache import inf_cache as memoized24 from archives import archive_dict, file_archive25 from keymaps import picklemap, stringmap, hashmap22 from mystic.cache.safe import inf_cache as memoized 23 #from mystic.cache import inf_cache as memoized 24 from mystic.cache.archives import archive_dict, file_archive 25 from mystic.cache.keymaps import picklemap, stringmap, hashmap 26 26 dumps = picklemap(flat=False) 27 27 encode = stringmap(flat=False)
Note: See TracChangeset
for help on using the changeset viewer.