colour.utilities.is_caching_enabled#

colour.utilities.is_caching_enabled() bool[source]#

Return whether Colour caching is enabled.

Returns:

Whether Colour caching is enabled.

Return type:

bool

Examples

>>> with caching_enable(False):
...     is_caching_enabled()
...
False
>>> with caching_enable(True):
...     is_caching_enabled()
...
True