Python 2.6.6 when I call .get on the results of a .get the result is a tuple. This is making no sense to me. Example:
box = {}.get('test1',{}).get('test2','hrmm'),
print type(box)
prints out
<type 'tuple'>
this makes no sense to me. clearly the default in the second get is a simple string. so what gives? thanks for any insight.