28a29,30
> from __future__ import print_function
>
119c121
< print 'multidict dump'
---
> print('multidict dump')
122c124
< print ' ', node.local
---
> print(' ', node.local)
132c134
< print key, values
---
> print(key, values)
153,159c155,161
< print 'test1>', test1.items()
< print 'test2>', test2.items()
< #print test1['a']
< print test1['b']
< print test1['c']
< print test1['d']
< print test1['e']
---
> print('test1>', test1.items())
> print('test2>', test2.items())
> #print(test1['a'])
> print(test1['b'])
> print(test1['c'])
> print(test1['d'])
> print(test1['e'])
161,165c163,167
< print test2['a']
< #print test2['b']
< print test2['c']
< print test2['d']
< print test2['e']
---
> print(test2['a'])
> #print(test2['b'])
> print(test2['c'])
> print(test2['d'])
> print(test2['e'])
168c170
< print key
---
> print(key)
174,176c176,178
< print test1
< print test2
< print `test2`
---
> print(test1)
> print(test2)
> print(`test2`)
178c180
< print len(test2)
---
> print(len(test2))
182c184
< print test4
---
> print(test4)