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

Lines Matching refs:resp

916         resp = self._get_line()
920 if self._match(self.tagre, resp):
923 raise self.abort('unexpected tagged response: %s' % resp)
933 if not self._match(Untagged_response, resp):
934 if self._match(Untagged_status, resp):
940 if self._match(Continuation, resp):
944 raise self.abort("unexpected response: '%s'" % resp)
982 return resp
1313 def Internaldate2tuple(resp):
1320 mo = InternalDate.match(resp)
1371 def ParseFlags(resp):
1375 mo = Flags.match(resp)