Searched refs:authobject (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Doc/library/ |
D | smtplib.rst | 353 .. method:: SMTP.auth(mechanism, authobject, *, initial_response_ok=True) 356 *mechanism*, and handle the challenge response via *authobject*. 362 *authobject* must be a callable object taking an optional single argument: 364 data = authobject(challenge=None) 367 ``authobject()`` will be called first with no argument. It can return the 369 the ``AUTH`` command as below. If the ``authobject()`` does not support an 372 false, then ``authobject()`` will not be called first with ``None``. 375 false, ``authobject()`` will be called to process the server's challenge
|
D | imaplib.rst | 218 .. method:: IMAP4.authenticate(mechanism, authobject) 225 *authobject* must be a callable object:: 227 data = authobject(response)
|
/third_party/python/Lib/ |
D | smtplib.py | 616 def auth(self, mechanism, authobject, *, initial_response_ok=True): argument 639 initial_response = (authobject() if initial_response_ok else None) 652 authobject(challenge).encode('ascii'), eol='')
|
D | imaplib.py | 420 def authenticate(self, mechanism, authobject): argument 441 self.literal = _Authenticator(authobject).process
|
/third_party/python/Misc/ |
D | HISTORY | 5300 authobject is specified.
|