Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2This is a dummy module that creates global caches so that we can test 

3the behavior of sims_clean_up() 

4""" 

5from lsst.sims.utils.CodeUtilities import sims_clean_up 

6 

7__all__ = ["a_dict_cache", "a_list_cache"] 

8 

9a_dict_cache = {} 

10 

11a_list_cache = [] 

12 

13sims_clean_up.targets.append(a_dict_cache) 

14sims_clean_up.targets.append(a_list_cache)