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

Method help

Lib/smtplib.py:507–511  ·  view source on GitHub ↗

SMTP 'help' command. Returns help text from server.

(self, args='')

Source from the content-addressed store, hash-verified

505 return opt.lower() in self.esmtp_features
506
507 def help(self, args=''):
508 """SMTP 'help' command.
509 Returns help text from server."""
510 self.putcmd("help", args)
511 return self.getreply()[1]
512
513 def rset(self):
514 """SMTP 'rset' command -- resets session."""

Callers 1

testHELPMethod · 0.95

Calls 2

putcmdMethod · 0.95
getreplyMethod · 0.95

Tested by 1

testHELPMethod · 0.76