Home | History | Annotate | Download | only in python2.7

Lines Matching defs:abort

129     IMAP4 server errors raise <instance>.abort("<reason>"),
132 <instance>.readonly("<reason>"), which is a sub-class of 'abort'.
135 "abort" exceptions imply the connection should be reset, and
146 class abort(error): pass # Service errors - close and retry
147 class readonly(abort): pass # Mailbox status changed to READ-ONLY
340 It should return None if the client abort response '*' should
815 raise self.abort(bye[-1])
859 raise self.abort('socket error: %s' % val)
884 raise self.abort('socket error: %s' % val)
898 except self.abort, val:
899 raise self.abort('command: %s => %s' % (name, val))
923 raise self.abort('unexpected tagged response: %s' % resp)
944 raise self.abort("unexpected response: '%s'" % resp)
1000 except self.abort, val:
1011 raise self.abort('socket error: EOF')
1015 raise self.abort('socket error: unterminated line')
1278 return '*' # Abort conversation