MCPcopy
hub / github.com/django/django / __iadd__

Method __iadd__

django/contrib/gis/geos/mutable_list.py:121–124  ·  view source on GitHub ↗

add another list-like object to self

(self, other)

Source from the content-addressed store, hash-verified

119 return other.__class__([*other, *self])
120
121 def __iadd__(self, other):
122 "add another list-like object to self"
123 self.extend(other)
124 return self
125
126 def __mul__(self, n):
127 "multiply"

Callers

nothing calls this directly

Calls 1

extendMethod · 0.95

Tested by

no test coverage detected