MCPcopy Index your code
hub / github.com/python/cpython / verify

Method verify

Lib/smtplib.py:592–595  ·  view source on GitHub ↗

SMTP 'verify' command -- checks for address validity.

(self, address)

Source from the content-addressed store, hash-verified

590 return (code, msg)
591
592 def verify(self, address):
593 """SMTP 'verify' command -- checks for address validity."""
594 self.putcmd("vrfy", _addr_only(address))
595 return self.getreply()
596 # a.k.a.
597 vrfy = verify
598

Callers 1

testVRFYMethod · 0.95

Calls 3

putcmdMethod · 0.95
getreplyMethod · 0.95
_addr_onlyFunction · 0.85

Tested by 1

testVRFYMethod · 0.76