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
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
This is a dummy module that creates global caches so that we can test
the behavior of sims_clean_up()
from lsst.sims.utils.CodeUtilities import sims_clean_up
__all__ = ["a_dict_cache", "a_list_cache"]
a_dict_cache = {}
a_list_cache = []
sims_clean_up.targets.append(a_dict_cache)
sims_clean_up.targets.append(a_list_cache)