I'm not sure I'm writing my program in correct way, but I have something like this:
unit_dict = {}
test_dict = {'a':unit_dict}
Now, when I access test_dict['a']
I get a reference (or is it pointer) to the correct dictionary, but is there a way at all to get the original object name somehow from test_dict?
Like:
magick_function(test_dict['a'])
res > unit_dict = {}