I need a self nested infinite dictionary of the form
a = {'a': 'a'}
a.update({'b': a})
It works pretty well and values by key 'b'
may be retrieved numerous times:
a['b']['b']['b']['b']
Q1: Is there a limit on depth of key 'b'
?
Q2: What is the memory size of this object?