mirror of https://github.com/python/cpython.git
Just changed some continued-line indentation to read better, due to
the earlier s/dictionary/dict/ change.
This commit is contained in:
parent
fa699126b5
commit
fe677e2012
|
@ -238,9 +238,9 @@ def __iter__(self):
|
||||||
return iter([self.first, self.last])
|
return iter([self.first, self.last])
|
||||||
|
|
||||||
d = dict([AddressBookEntry('Tim', 'Warsaw'),
|
d = dict([AddressBookEntry('Tim', 'Warsaw'),
|
||||||
AddressBookEntry('Barry', 'Peters'),
|
AddressBookEntry('Barry', 'Peters'),
|
||||||
AddressBookEntry('Tim', 'Peters'),
|
AddressBookEntry('Tim', 'Peters'),
|
||||||
AddressBookEntry('Barry', 'Warsaw')])
|
AddressBookEntry('Barry', 'Warsaw')])
|
||||||
vereq(d, {'Barry': 'Warsaw', 'Tim': 'Peters'})
|
vereq(d, {'Barry': 'Warsaw', 'Tim': 'Peters'})
|
||||||
|
|
||||||
d = dict(zip(range(4), range(1, 5)))
|
d = dict(zip(range(4), range(1, 5)))
|
||||||
|
|
Loading…
Reference in New Issue