예제 #1
0
파일: match.py 프로젝트: ecolitan/fatics
 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,))
예제 #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, ))
예제 #3
0
파일: partner.py 프로젝트: pi4chess/fatics
 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, ))
예제 #4
0
파일: partner.py 프로젝트: ecolitan/fatics
 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,))
예제 #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, ))