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

Method set_sequences

Lib/mailbox.py:1841–1843  ·  view source on GitHub ↗

Set the list of sequences that include the message.

(self, sequences)

Source from the content-addressed store, hash-verified

1839 return self._sequences[:]
1840
1841 def set_sequences(self, sequences):
1842 """Set the list of sequences that include the message."""
1843 self._sequences = list(sequences)
1844
1845 def add_sequence(self, sequence):
1846 """Add sequence to list of sequences including the message."""

Callers 3

test_sequencesMethod · 0.95
test_packMethod · 0.95
test_sequencesMethod · 0.95

Calls 1

listClass · 0.85

Tested by 3

test_sequencesMethod · 0.76
test_packMethod · 0.76
test_sequencesMethod · 0.76