Searched refs:initial_response_ok (Results 1 – 2 of 2) sorted by relevance
/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) 666 def login(self, user, password, *, initial_response_ok=True): argument 721 initial_response_ok=initial_response_ok)
|
/external/python/cpython3/Doc/library/ |
D | smtplib.rst | 299 .. method:: SMTP.login(user, password, *, initial_response_ok=True) 321 for a list of supported authentication methods. *initial_response_ok* is 324 Optional keyword argument *initial_response_ok* specifies whether, for 331 *initial_response_ok* parameter was added. 334 .. method:: SMTP.auth(mechanism, authobject, *, initial_response_ok=True) 347 If optional keyword argument *initial_response_ok* is true, 352 ``None`` when called with ``challenge=None``. If *initial_response_ok* is 355 If the initial response check returns ``None``, or if *initial_response_ok* is
|