A base class which provides complete list interface. Derived classes must call ListMixin's __init__() function and implement the following:
Recreate the entire object.
NOTE: items may be a generator which calls _get_single_internal. Therefore, it is necessary to cache the values in a temporary:
temp = list(items)
before clobbering the original storage.
Method | __add__ |
add another list-like object |
Method | __delitem__ |
Delete the item(s) at the specified index/slice. |
Method | __eq__ |
Undocumented |
Method | __getitem__ |
Get the item(s) at the specified index/slice. |
Method | __iadd__ |
add another list-like object to self |
Method | __imul__ |
multiply |
Method | __init__ |
Undocumented |
Method | __lt__ |
Undocumented |
Method | __mul__ |
multiply |
Method | __radd__ |
add to another list-like object |
Method | __rmul__ |
multiply |
Method | __setitem__ |
Set the item(s) at the specified index/slice. |
Method | _assign_extended_slice |
Assign an extended slice by re-assigning individual items |
Method | _assign_extended_slice_rebuild |
Assign an extended slice by rebuilding entire list |
Method | _assign_simple_slice |
Assign a simple slice; Can assign slice of any length |
Method | _check_allowed |
Undocumented |
Method | _checkindex |
Undocumented |
Method | _rebuild |
Undocumented |
Method | _set_single_rebuild |
Undocumented |
Method | _set_slice |
Assign values to a slice of the object |
Method | append |
Standard list append method |
Method | count |
Standard list count method |
Method | extend |
Standard list extend method |
Method | index |
Standard list index method |
Method | insert |
Standard list insert method |
Method | pop |
Standard list pop method |
Method | remove |
Standard list remove method |
Method | reverse |
Standard list reverse method |
Method | sort |
Standard list sort method |
Class Variable | _maxlength |
Undocumented |
Class Variable | _minlength |
Undocumented |
Instance Variable | _get_single_internal |
Undocumented |
Instance Variable | _set_single |
Undocumented |
django.contrib.gis.geos.geometry.GEOSGeometry
Undocumented
int
=
django.contrib.gis.geos.linestring.LineString
, django.contrib.gis.geos.point.Point
, django.contrib.gis.geos.polygon.Polygon
Undocumented
django.contrib.gis.geos.collections.GeometryCollection
, django.contrib.gis.geos.polygon.Polygon
Undocumented