t900.py.real 286 B

12345678910111213141516171819
  1. defaultdict(None, {})
  2. defaultdict(None, {})
  3. defaultdict(None, {})
  4. defaultdict(None, {1: 2})
  5. defaultdict(<type 'list'>, {1: 2})
  6. 2
  7. []
  8. [5]
  9. defaultdict(<type 'list'>, {1: 2, 2: [5]})
  10. <type 'list'>
  11. [5]
  12. defaultdict(<function abc>, {})
  13. 6
  14. defaultdict(<function abc>, {4: 14})
  15. {1: 2, 4: 6}
  16. 6