Ticket #4546: tests.py.diff

File tests.py.diff, 578 bytes (added by Glin <glin@…>, 17 years ago)
  • regressiontests/datastructures/tests.py

     
    5454True
    5555>>> print repr(d)
    5656{'one': 'not one', 'two': 'two', 'three': 'three'}
     57>>> d.pop('two')
     58'two'
     59>>> print repr(d)
     60{'one': 'not one', 'three': 'three'}
     61>>> d.popitem()
     62('one', 'not one')
     63>>> print d.items()
     64[('three', 'three')]
    5765
    5866### DotExpandedDict ############################################################
    5967
Back to Top