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

Method set_sequences

Lib/mailbox.py:1848–1850  ·  view source on GitHub ↗

Set the list of sequences that include the message.

(self, sequences)

Source from the content-addressed store, hash-verified

1846 return self._sequences[:]
1847
1848 def set_sequences(self, sequences):
1849 """Set the list of sequences that include the message."""
1850 self._sequences = list(sequences)
1851
1852 def add_sequence(self, sequence):
1853 """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