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

Method set_labels

Lib/mailbox.py:1921–1923  ·  view source on GitHub ↗

Set the list of labels on the message.

(self, labels)

Source from the content-addressed store, hash-verified

1919 return self._labels[:]
1920
1921 def set_labels(self, labels):
1922 """Set the list of labels on the message."""
1923 self._labels = list(labels)
1924
1925 def add_label(self, label):
1926 """Add label to list of labels on the message."""

Callers 3

get_messageMethod · 0.95
test_labelsMethod · 0.95
test_labelsMethod · 0.95

Calls 1

listClass · 0.85

Tested by 2

test_labelsMethod · 0.76
test_labelsMethod · 0.76