MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / partial

Method partial

tools/python-3.11.9-amd64/Lib/imaplib.py:687–696  ·  view source on GitHub ↗

Fetch truncated part of a message. (typ, [data, ...]) = .partial(message_num, message_part, start, length) 'data' is tuple of message part envelope and data.

(self, message_num, message_part, start, length)

Source from the content-addressed store, hash-verified

685
686
687 def partial(self, message_num, message_part, start, length):
688 """Fetch truncated part of a message.
689
690 (typ, [data, ...]) = <instance>.partial(message_num, message_part, start, length)
691
692 'data' is tuple of message part envelope and data.
693 """
694 name = 'PARTIAL'
695 typ, dat = self._simple_command(name, message_num, message_part, start, length)
696 return self._untagged_response(typ, dat, 'FETCH')
697
698
699 def proxyauth(self, user):

Callers 15

_signature_from_callableFunction · 0.80
_register_atexitFunction · 0.80
lazycacheFunction · 0.80
typing.pyFile · 0.80
before_getMethod · 0.80
__init__Method · 0.80
__setitem__Method · 0.80
test_afterMethod · 0.80
sock_recvMethod · 0.80
sock_recv_intoMethod · 0.80
sock_recvfromMethod · 0.80
sock_recvfrom_intoMethod · 0.80

Calls 2

_simple_commandMethod · 0.95
_untagged_responseMethod · 0.95

Tested by 3

test_afterMethod · 0.64