Home
last modified time | relevance | path

Searched refs:initial_response_ok (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/
Dsmtplib.py616 def auth(self, mechanism, authobject, *, initial_response_ok=True): argument
639 initial_response = (authobject() if initial_response_ok else None)
686 def login(self, user, password, *, initial_response_ok=True): argument
741 initial_response_ok=initial_response_ok)
/third_party/python/Doc/library/
Dsmtplib.rst318 .. method:: SMTP.login(user, password, *, initial_response_ok=True)
340 for a list of supported authentication methods. *initial_response_ok* is
343 Optional keyword argument *initial_response_ok* specifies whether, for
350 *initial_response_ok* parameter was added.
353 .. method:: SMTP.auth(mechanism, authobject, *, initial_response_ok=True)
366 If optional keyword argument *initial_response_ok* is true,
371 ``None`` when called with ``challenge=None``. If *initial_response_ok* is
374 If the initial response check returns ``None``, or if *initial_response_ok* is
/third_party/python/Lib/test/
Dtest_smtplib.py1142 resp = smtp.auth("LOGIN", smtp.auth_login, initial_response_ok=True)
1151 resp = smtp.auth("LOGIN", smtp.auth_login, initial_response_ok=False)
1170 smtp.auth("BUGGY", auth_buggy, initial_response_ok=False)
/third_party/python/Misc/NEWS.d/
D3.10.0a7.rst457 initial_response_ok=False will fail.