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

Method capability

Lib/imaplib.py:530–536  ·  view source on GitHub ↗

(typ, [data]) = .capability() Fetch capabilities list from server.

(self)

Source from the content-addressed store, hash-verified

528
529
530 def capability(self):
531 """(typ, [data]) = <instance>.capability()
532 Fetch capabilities list from server."""
533
534 name = 'CAPABILITY'
535 typ, dat = self._simple_command(name)
536 return self._untagged_response(typ, dat, name)
537
538
539 def check(self):

Callers 1

_get_capabilitiesMethod · 0.95

Calls 2

_simple_commandMethod · 0.95
_untagged_responseMethod · 0.95

Tested by

no test coverage detected