示例#1
0
文件: Lunch.py 项目: bodii/test-code
 def __init__(self):
     '''Initialize wiht a sandwich and a gin and tonic.'''
     Meal.__init__(self, 'sandwich', 'gin and tonic')
     self.setName('midday meal')
示例#2
0
文件: Dinner.py 项目: bodii/test-code
 def __init__(self):
     '''Initialize with steak and merlot.'''
     Meal.__init__(self, 'steak', 'merlot')
     self.setName('dinner')
示例#3
0
 def __init__(self):
     '''Initialize with an omelet and coffee.'''
     Meal.__init__(self, 'omelet', 'coffee')
     self.setName('breakfast')