in core/util.py [0:0]
def is_mutable(value): d = {} try: d[value] = None except TypeError: return True return False