MCPcopy Index your code
hub / github.com/RustPython/RustPython / copy

Method copy

Lib/imaplib.py:565–570  ·  view source on GitHub ↗

Copy 'message_set' messages onto end of 'new_mailbox'. (typ, [data]) = .copy(message_set, new_mailbox)

(self, message_set, new_mailbox)

Source from the content-addressed store, hash-verified

563
564
565 def copy(self, message_set, new_mailbox):
566 """Copy 'message_set' messages onto end of 'new_mailbox'.
567
568 (typ, [data]) = <instance>.copy(message_set, new_mailbox)
569 """
570 return self._simple_command('COPY', message_set, new_mailbox)
571
572
573 def create(self, mailbox):

Callers

nothing calls this directly

Calls 1

_simple_commandMethod · 0.95

Tested by

no test coverage detected