Ticket #4546: tests.py.diff
File tests.py.diff, 578 bytes (added by , 17 years ago) |
---|
-
regressiontests/datastructures/tests.py
54 54 True 55 55 >>> print repr(d) 56 56 {'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')] 57 65 58 66 ### DotExpandedDict ############################################################ 59 67