Home
last modified time | relevance | path

Searched refs:authobject (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Doc/library/
Dsmtplib.rst334 .. method:: SMTP.auth(mechanism, authobject, *, initial_response_ok=True)
337 *mechanism*, and handle the challenge response via *authobject*.
343 *authobject* must be a callable object taking an optional single argument:
345 data = authobject(challenge=None)
348 ``authobject()`` will be called first with no argument. It can return the
350 the ``AUTH`` command as below. If the ``authobject()`` does not support an
353 false, then ``authobject()`` will not be called first with ``None``.
356 false, ``authobject()`` will be called to process the server's challenge
Dimaplib.rst207 .. method:: IMAP4.authenticate(mechanism, authobject)
214 *authobject* must be a callable object::
216 data = authobject(response)
/external/python/cpython3/Lib/
Dsmtplib.py605 def auth(self, mechanism, authobject, *, initial_response_ok=True): argument
628 initial_response = (authobject() if initial_response_ok else None)
638 authobject(challenge).encode('ascii'), eol='')
Dimaplib.py406 def authenticate(self, mechanism, authobject): argument
427 self.literal = _Authenticator(authobject).process
/external/python/cpython2/Doc/library/
Dimaplib.rst167 .. method:: IMAP4.authenticate(mechanism, authobject)
174 *authobject* must be a callable object::
176 data = authobject(response)
/external/python/cpython2/Lib/
Dimaplib.py343 def authenticate(self, mechanism, authobject): argument
364 self.literal = _Authenticator(authobject).process
/external/python/cpython3/Misc/
DHISTORY5300 authobject is specified.