Searched refs:authobject (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | smtplib.rst | 334 .. 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
|
D | imaplib.rst | 207 .. method:: IMAP4.authenticate(mechanism, authobject) 214 *authobject* must be a callable object:: 216 data = authobject(response)
|
/external/python/cpython3/Lib/ |
D | smtplib.py | 605 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='')
|
D | imaplib.py | 406 def authenticate(self, mechanism, authobject): argument 427 self.literal = _Authenticator(authobject).process
|
/external/python/cpython2/Doc/library/ |
D | imaplib.rst | 167 .. method:: IMAP4.authenticate(mechanism, authobject) 174 *authobject* must be a callable object:: 176 data = authobject(response)
|
/external/python/cpython2/Lib/ |
D | imaplib.py | 343 def authenticate(self, mechanism, authobject): argument 364 self.literal = _Authenticator(authobject).process
|
/external/python/cpython3/Misc/ |
D | HISTORY | 5300 authobject is specified.
|