MCPcopy
hub / github.com/django/django / appendlist

Method appendlist

django/http/request.py:684–688  ·  view source on GitHub ↗
(self, key, value)

Source from the content-addressed store, hash-verified

682 return super().setlistdefault(key, default_list)
683
684 def appendlist(self, key, value):
685 self._assert_mutable()
686 key = bytes_to_text(key, self.encoding)
687 value = bytes_to_text(value, self.encoding)
688 super().appendlist(key, value)
689
690 def pop(self, key, *args):
691 self._assert_mutable()

Callers 8

__init__Method · 0.95
test_immutabilityMethod · 0.95
test_single_key_valueMethod · 0.95
test_multiple_keysMethod · 0.95
_parseMethod · 0.45
handle_file_completeMethod · 0.45
fromkeysMethod · 0.45

Calls 2

_assert_mutableMethod · 0.95
bytes_to_textFunction · 0.85

Tested by 4

test_immutabilityMethod · 0.76
test_single_key_valueMethod · 0.76
test_multiple_keysMethod · 0.76