# HG changeset patch # User Franz Glasner # Date 1692311395 -7200 # Node ID 75d37575472b9670c9bb2a84dbaa1b5546a8825f # Parent 0fab9cbccfa7647a4097c5ceb77ce8ae1079dced Docs: Add does to some methods that are yet missing docs diff -r 0fab9cbccfa7 -r 75d37575472b configmix/config.py --- a/configmix/config.py Thu Aug 17 09:08:09 2023 +0200 +++ b/configmix/config.py Fri Aug 18 00:29:55 2023 +0200 @@ -498,10 +498,16 @@ self.__interpolation_cache.clear() def disable_cache(self): + """Disable the internal lookup cache and the interpolation cache""" self.__lookup_cache = None self.__interpolation_cache = None def enable_cache(self): + """Enable the internal lookup cache and the interpolation cache. + + The caches are empty after enabling. + + """ self.__lookup_cache = {} self.__interpolation_cache = {}