| Home | Trees | Index | Help |
|---|
|
|
object --+
|
tuple
tuple() -> an empty tuple tuple(sequence) -> tuple initialized from sequence's items
If the argument is a tuple, the return value is the same object.
|
|||
|
__add__(x,
y)
x+y |
|||
|
__contains__(x,
y)
y in x |
|||
|
__eq__(x,
y)
x==y |
|||
|
__ge__(x,
y)
x>=y |
|||
|
__getattribute__(...)
x.__getattribute__('name') <==> x.name |
|||
|
__getitem__(x,
y)
x[y] |
|||
| __getnewargs__(...) | |||
|
__getslice__(x,
i,
j)
x[i:j] |
|||
|
__gt__(x,
y)
x>y |
|||
|
__hash__(x)
hash(x) |
|||
|
__iter__(x)
iter(x) |
|||
|
__le__(x,
y)
x<=y |
|||
|
__len__(x)
len(x) |
|||
|
__lt__(x,
y)
x<y |
|||
|
__mul__(x,
n)
x*n |
|||
|
__ne__(x,
y)
x!=y |
|||
| __new__(T, S, ...) | |||
|
__repr__(x)
repr(x) |
|||
|
__rmul__(x,
n)
n*x |
|||
|
Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
|
|
|
|
|
|
|
x[i:j] Use of negative indices is not supported. |
|
|
|
|
|
|
|
|
|
|
|
| Home | Trees | Index | Help |
|---|
| Generated by Epydoc 3.0alpha2 on Fri Sep 28 00:57:34 2007 | http://epydoc.sf.net |