(self)
| 2635 | self.first = first |
| 2636 | self.last = last |
| 2637 | def __iter__(self): |
| 2638 | return iter([self.first, self.last]) |
| 2639 | |
| 2640 | d = dict([AddressBookEntry('Tim', 'Warsaw'), |
| 2641 | AddressBookEntry('Barry', 'Peters'), |
no outgoing calls
no test coverage detected