Exemplo n.º 1
0
 def withdraw_logout(self):
     Offer.withdraw_logout(self)
     self.a.write_('Challenge to %s withdrawn.\n',
         (self.b.name,))
     self.b.write_('%s, who was challenging you, has departed.\n',
         (self.a.name,))
     self.b.write_('Challenge from %s removed.\n',
         (self.a.name,))
Exemplo n.º 2
0
 def withdraw_logout(self):
     Offer.withdraw_logout(self)
     self.a.write(_('Challenge to %s withdrawn.\n') % (self.b.name, ))
     self.b.write_(
         '\n%s, who was challenging you, has departed.\nChallenge from %s removed.\n',
         (self.a.name, self.a.name))
     if self.variant_name == 'bughouse':
         assert (self.b.session.partner)
         self.b.session.partner.write_(
             '\n%s, who was challenging your partner, has departed.\n',
             (self.a.name, ))
Exemplo n.º 3
0
 def withdraw_logout(self):
     Offer.withdraw_logout(self)
     self.a.write_('Partnership offer to %s withdrawn.\n', (self.b.name, ))
     self.b.write_(
         '%s, who was offering a partnership with you, has departed.\n',
         (self.a.name, ))
Exemplo n.º 4
0
 def withdraw_logout(self):
     Offer.withdraw_logout(self)
     self.a.write_('Partnership offer to %s withdrawn.\n', (self.b.name,))
     self.b.write_('%s, who was offering a partnership with you, has departed.\n',
         (self.a.name,))
Exemplo n.º 5
0
 def withdraw_logout(self):
     Offer.withdraw_logout(self)
     self.a.write_('Challenge to %s withdrawn.\n', (self.b.name, ))
     self.b.write_('%s, who was challenging you, has departed.\n',
                   (self.a.name, ))
     self.b.write_('Challenge from %s removed.\n', (self.a.name, ))