comparison docs/pycon2010/pirate7.py @ 374:89e38f922c25

font sizes up
author cat@eee
date Sat, 20 Feb 2010 00:11:34 -0500
parents d275d3beceff
children
comparison
equal deleted inserted replaced
373:a381f8dd3a45 374:89e38f922c25
22 def precmd(self, line): 22 def precmd(self, line):
23 self.initial_gold = self.gold 23 self.initial_gold = self.gold
24 return line 24 return line
25 def postcmd(self, stop, line): 25 def postcmd(self, stop, line):
26 if self.gold != self.initial_gold: 26 if self.gold != self.initial_gold:
27 print('Now we gots {0} doubloons'.format(self.gold)) 27 print('Now we gots {0} doubloons'
28 .format(self.gold))
28 if self.gold < 0: 29 if self.gold < 0:
29 print("Off to debtorrr's prison. Game overrr.") 30 print("Off to debtorrr's prison.")
30 return True 31 stop = True
31 return stop 32 return stop
32 def do_quit(self, arg): 33 def do_quit(self, arg):
33 print("Quiterrr!") 34 print("Quiterrr!")
34 return True 35 return True
35 default_to_shell = True 36 default_to_shell = True