X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=trunk%2Fpsycopg2%2Fdoc%2Fapi%2Fprivate%2F__builtin__.list-class.html;fp=trunk%2Fpsycopg2%2Fdoc%2Fapi%2Fprivate%2F__builtin__.list-class.html;h=c8217a7ada847d69877156fcbfb0a2422606c98f;hb=5a4c1b1278ffa01e630fde47f7c54888ed20a576;hp=0000000000000000000000000000000000000000;hpb=cee5ab52df1c9f38b6eaff2dd354cb22f59028c7;p=plcapi.git diff --git a/trunk/psycopg2/doc/api/private/__builtin__.list-class.html b/trunk/psycopg2/doc/api/private/__builtin__.list-class.html new file mode 100644 index 00000000..c8217a7a --- /dev/null +++ b/trunk/psycopg2/doc/api/private/__builtin__.list-class.html @@ -0,0 +1,817 @@ + + + +
+| Home | +Trees | +Index | +Help | ++ |
|---|
|
+ + |
+
+object --+
+ |
+ list
+DictRowlist() -> new list +list(sequence) -> new list initialized from sequence's items
+| Method Summary | |
|---|---|
| + |
++x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
| + | __add__(x,
+ y)
++Return x+y... |
| + | __contains__(x,
+ y)
++Return y in x... |
| + | __delitem__(x,
+ y)
++Return del x[y]... |
| + |
++Use of negative indices is not supported. |
| + | __eq__(x,
+ y)
++Return x==y... |
| + | __ge__(x,
+ y)
++Return x>=y... |
| + |
++x.__getattribute__('name') <==> x.name |
| + | __getitem__(x,
+ y)
++Return x[y]... |
| + |
++Use of negative indices is not supported. |
| + | __gt__(x,
+ y)
++Return x>y... |
| + | __hash__(x)
++Return hash(x)... |
| + | __iadd__(x,
+ y)
++Return x+=y... |
| + | __imul__(x,
+ y)
++Return x*=y... |
| + | __iter__(x)
++Return iter(x)... |
| + | __le__(x,
+ y)
++Return x<=y... |
| + | __len__(x)
++Return len(x)... |
| + | __lt__(x,
+ y)
++Return x<y... |
| + | __mul__(x,
+ n)
++Return x*n... |
| + | __ne__(x,
+ y)
++Return x!=y... |
| + | __new__(T,
+ S,
+ ...)
++Return a new object with type S, a subtype of T... |
| + | __repr__(x)
++Return repr(x)... |
| + | __rmul__(x,
+ n)
++Return n*x... |
| + | __setitem__(x,
+ i,
+ y)
++Return x[i]=y... |
| + |
++Use of negative indices is not supported. |
| + |
++append object to end |
| + |
++return number of occurrences of value |
| + |
++extend list by appending elements from the iterable |
| + |
++L.index(value, [start, [stop]]) -> integer -- return first index of value |
| + |
++insert object before index |
| + |
++remove and return item at index (default last) |
| + |
++remove first occurrence of value |
| + |
++reverse IN PLACE |
| + |
++stable sort IN PLACE; cmpfunc(x, y) -> -1, 0, 1 |
| Inherited from object | |
| + |
++x.__delattr__('name') <==> del x.name |
| + |
++helper for pickle |
| + |
++helper for pickle |
| + |
++x.__setattr__('name', value) <==> x.name = value |
| + |
++Return str(x)... |
| Method Details |
|---|
+ __init__(...)
+
+ |
+ __add__(x,
+ y)
+
+ |
+ __contains__(x,
+ y)
+
+ |
+ __delitem__(x,
+ y)
+
+ |
+ __delslice__(x,
+ i,
+ j)
+
+ |
+ __eq__(x,
+ y)
+
+ |
+ __ge__(x,
+ y)
+
+ |
+ __getattribute__(...) ++x.__getattribute__('name') <==> x.name +
|
+ __getitem__(x,
+ y)
+
+ |
+ __getslice__(x,
+ i,
+ j)
+
+ |
+ __gt__(x,
+ y)
+
+ |
+ __hash__(x)
+
+ |
+ __iadd__(x, + y) ++
|
+ __imul__(x, + y) ++
|
+ __iter__(x) ++
|
+ __le__(x,
+ y)
+
+ |
+ __len__(x)
+
+ |
+ __lt__(x,
+ y)
+
+ |
+ __mul__(x, + n) ++
|
+ __ne__(x,
+ y)
+
+ |
+ __new__(T, + S, + ...) ++
|
+ __repr__(x)
+
+ |
+ __rmul__(x, + n) ++
|
+ __setitem__(x,
+ i,
+ y)
+
+ |
+ __setslice__(x,
+ i,
+ j,
+ y)
+
+ |
+ append(L, + object) ++append object to end +
|
+ count(L, + value) ++return number of occurrences of value +
|
+ extend(L, + iterable) ++extend list by appending elements from the iterable +
|
+ index(...) ++L.index(value, [start, [stop]]) -> integer -- return first index of value +
|
+ insert(L, + index, + object) ++insert object before index +
|
+ pop(L, + index=...) ++remove and return item at index (default last) +
|
+ remove(L, + value) ++remove first occurrence of value +
|
+ reverse(L) ++reverse IN PLACE +
|
+ sort(L, + cmpfunc=None) ++stable sort IN PLACE; cmpfunc(x, y) -> -1, 0, 1 +
|
| Home | +Trees | +Index | +Help | ++ |
|---|
| Generated by Epydoc 2.1 on Sat Jan 14 01:42:32 2006 | ++ http://epydoc.sf.net + | +