mirror of
https://github.com/python/cpython.git
synced 2026-05-28 15:16:53 -04:00
Just changed some continued-line indentation to read better, due to
the earlier s/dictionary/dict/ change.
This commit is contained in:
@@ -238,9 +238,9 @@ def dict_constructor():
|
||||
return iter([self.first, self.last])
|
||||
|
||||
d = dict([AddressBookEntry('Tim', 'Warsaw'),
|
||||
AddressBookEntry('Barry', 'Peters'),
|
||||
AddressBookEntry('Tim', 'Peters'),
|
||||
AddressBookEntry('Barry', 'Warsaw')])
|
||||
AddressBookEntry('Barry', 'Peters'),
|
||||
AddressBookEntry('Tim', 'Peters'),
|
||||
AddressBookEntry('Barry', 'Warsaw')])
|
||||
vereq(d, {'Barry': 'Warsaw', 'Tim': 'Peters'})
|
||||
|
||||
d = dict(zip(range(4), range(1, 5)))
|
||||
|
||||
Reference in New Issue
Block a user