Home | Trees | Index | Help |
|
---|
Package lxml :: Module objectify :: Class FloatElement |
|
object
--+ |_Element
--+ |ElementBase
--+ |ObjectifiedElement
--+ |ObjectifiedDataElement
--+ |NumberElement
--+ | FloatElement
Method Summary | |
---|---|
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
Inherited from NumberElement | |
x.__abs__() <==> abs(x) | |
x.__add__(y) <==> x+y | |
x.__and__(y) <==> x&y | |
x.__div__(y) <==> x/y | |
x.__eq__(y) <==> x==y | |
x.__float__() <==> float(x) | |
x.__ge__(y) <==> x>=y | |
x.__gt__(y) <==> x>y | |
x.__int__() <==> int(x) | |
x.__invert__() <==> ~x | |
x.__le__(y) <==> x<=y | |
x.__long__() <==> long(x) | |
x.__lshift__(y) <==> x<<y | |
x.__lt__(y) <==> x<y | |
x.__mod__(y) <==> x%y | |
x.__mul__(y) <==> x*y | |
x.__ne__(y) <==> x!=y | |
x.__neg__() <==> -x | |
x.__nonzero__() <==> x != 0 | |
x.__or__(y) <==> x|y | |
x.__pos__() <==> +x | |
x.__pow__(y[, z]) <==> pow(x, y[, z]) | |
x.__radd__(y) <==> y+x | |
x.__rand__(y) <==> y&x | |
x.__rdiv__(y) <==> y/x | |
x.__repr__() <==> repr(x) | |
x.__rlshift__(y) <==> y<<x | |
x.__rmod__(y) <==> y%x | |
x.__rmul__(y) <==> y*x | |
x.__ror__(y) <==> y|x | |
y.__rpow__(x[, z]) <==> pow(x, y[, z]) | |
x.__rrshift__(y) <==> y>>x | |
x.__rshift__(y) <==> x>>y | |
x.__rsub__(y) <==> y-x | |
x.__rtruediv__(y) <==> y/x | |
x.__rxor__(y) <==> y^x | |
x.__str__() <==> str(x) | |
x.__sub__(y) <==> x-y | |
x.__truediv__(y) <==> x/y | |
x.__xor__(y) <==> x^y | |
Inherited from ObjectifiedElement | |
x.__delattr__('name') <==> del x.name | |
x.__delitem__(y) <==> del x[y] | |
Use of negative indices is not supported. | |
x.__getattribute__('name') <==> x.name | |
x.__getitem__(y) <==> x[y] | |
Use of negative indices is not supported. | |
x.__iter__() <==> iter(x) | |
x.__len__() <==> len(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__setitem__(i, y) <==> x[i]=y | |
Use of negative indices is not supported. | |
Add a child value to the element. | |
Return the number of children of this element, regardless of their name. | |
Returns a list of object path expressions for all descendants. | |
| |
| |
| |
Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__hash__() <==> hash(x) | |
helper for pickle | |
helper for pickle |
Class Variable Summary | |
---|---|
PyCObject |
__pyx_vtable__ = <PyCObject object at 0x4074e9e0>
|
Inherited from NumberElement | |
getset_descriptor |
pyval = <attribute 'pyval' of 'lxml.objectify.NumberElem...
|
Inherited from ObjectifiedElement | |
getset_descriptor |
text = <attribute 'text' of 'lxml.objectify.ObjectifiedE...
|
Method Details |
---|
__new__(T, S, ...)T.__new__(S, ...) -> a new object with type S, a subtype of T
|
Class Variable Details |
---|
__pyx_vtable__
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sat Aug 18 12:44:27 2007 | http://epydoc.sf.net |