>>> l = ["Geeks", "for", "Geeks"]
>>> s=frozenset(l)
>>> s
frozenset({'for', 'Geeks'})
>>> dict={1:'a',2:{s:'frozenset'}}
>>> from trace_dkey import trace
>>> trace(dict,p)
[]
this should return [2,s]
but this is very tricky as frozenset are ast.Call object [<ast.Call object at 0x7fafe8919d90>]
this should return [2,s]
but this is very tricky as frozenset are ast.Call object
[<ast.Call object at 0x7fafe8919d90>]