Home | Trees | Index | Help |
|
---|
Package lxml :: Module objectify :: Class NumberElement |
|
object
--+ |_Element
--+ |ElementBase
--+ |ObjectifiedElement
--+ |ObjectifiedDataElement
--+ | NumberElement
FloatElement
,
IntElement
,
LongElement
Method Summary | |
---|---|
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 | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
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 | |
Set the function that parses the Python value from a string. | |
Inherited from ObjectifiedDataElement | |
For use in subclasses only. | |
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 _Element | |
x.__contains__(y) <==> y in x | |
| |
| |
| |
Called after object initialisation. | |
Adds the element as a following sibling directly after this element. | |
Adds the element as a preceding sibling directly before this element. | |
Adds a subelement to the end of this element. | |
Resets an element. | |
Extends the current children by the elements in the iterable. | |
Gets an element attribute. | |
Returns all subelements. | |
Iterate over all elements in the subtree in document order (depth first pre-order), starting with this element. | |
Returns the following sibling of this element or None. | |
Returns the parent of this element or None for the root element. | |
Returns the preceding sibling of this element or None. | |
Return an ElementTree for the root node of the document that contains this element. | |
Find the position of the child within the parent. | |
Inserts a subelement at the given position in this element | |
Gets element attributes, as a sequence. | |
Iterate over all elements in the subtree in document order (depth first pre-order), starting with this element. | |
Iterate over the ancestors of this element (from parent to parent). | |
Iterate over the children of this element. | |
Iterate over the descendants of this element in document order. | |
Iterate over the following or preceding siblings of this element. | |
Gets a list of attribute names. | |
Creates a new element associated with the same document. | |
Removes a matching subelement. | |
Replaces a subelement with the element passed as second argument. | |
Sets an element attribute. | |
Gets element attribute values as a sequence of strings. | |
Evaluate an xpath expression using the element as context node. | |
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 0x4074e9c8>
|
getset_descriptor |
pyval = <attribute 'pyval' of 'lxml.objectify.NumberElem...
|
Inherited from ObjectifiedElement | |
getset_descriptor |
text = <attribute 'text' of 'lxml.objectify.ObjectifiedE...
|
Inherited from _Element | |
getset_descriptor |
attrib = <attribute 'attrib' of 'lxml.etree._Element' ob...
|
getset_descriptor |
nsmap = <attribute 'nsmap' of 'lxml.etree._Element' obje...
|
getset_descriptor |
prefix = <attribute 'prefix' of 'lxml.etree._Element' ob...
|
getset_descriptor |
sourceline = <attribute 'sourceline' of 'lxml.etree._Ele...
|
getset_descriptor |
tag = <attribute 'tag' of 'lxml.etree._Element' objects>
|
getset_descriptor |
tail = <attribute 'tail' of 'lxml.etree._Element' object...
|
Method Details |
---|
__abs__(x)x.__abs__() <==> abs(x)
|
__add__(x,
y)
x.__add__(y) <==> x+y
|
__and__(x,
y)
x.__and__(y) <==> x&y
|
__div__(x, y)x.__div__(y) <==> x/y
|
__eq__(x,
y)
x.__eq__(y) <==> x==y
|
__float__(x)x.__float__() <==> float(x)
|
__ge__(x,
y)
x.__ge__(y) <==> x>=y
|
__gt__(x,
y)
x.__gt__(y) <==> x>y
|
__int__(x)x.__int__() <==> int(x)
|
__invert__(x)x.__invert__() <==> ~x
|
__le__(x,
y)
x.__le__(y) <==> x<=y
|
__long__(x)x.__long__() <==> long(x)
|
__lshift__(x, y)x.__lshift__(y) <==> x<<y
|
__lt__(x,
y)
x.__lt__(y) <==> x<y
|
__mod__(x, y)x.__mod__(y) <==> x%y
|
__mul__(x, y)x.__mul__(y) <==> x*y
|
__ne__(x, y)x.__ne__(y) <==> x!=y
|
__neg__(x)x.__neg__() <==> -x
|
__new__(T, S, ...)T.__new__(S, ...) -> a new object with type S, a subtype of T
|
__nonzero__(x)
x.__nonzero__() <==> x != 0
|
__or__(x,
y)
x.__or__(y) <==> x|y
|
__pos__(x)x.__pos__() <==> +x
|
__pow__(x, y, z=...)x.__pow__(y[, z]) <==> pow(x, y[, z])
|
__radd__(x,
y)
x.__radd__(y) <==> y+x
|
__rand__(x, y)x.__rand__(y) <==> y&x
|
__rdiv__(x, y)x.__rdiv__(y) <==> y/x
|
__repr__(x)
x.__repr__() <==> repr(x)
|
__rlshift__(x, y)x.__rlshift__(y) <==> y<<x
|
__rmod__(x, y)x.__rmod__(y) <==> y%x
|
__rmul__(x, y)x.__rmul__(y) <==> y*x
|
__ror__(x, y)x.__ror__(y) <==> y|x
|
__rpow__(y, x, z=...)y.__rpow__(x[, z]) <==> pow(x, y[, z])
|
__rrshift__(x, y)x.__rrshift__(y) <==> y>>x
|
__rshift__(x, y)x.__rshift__(y) <==> x>>y
|
__rsub__(x, y)x.__rsub__(y) <==> y-x
|
__rtruediv__(x, y)x.__rtruediv__(y) <==> y/x
|
__rxor__(x, y)x.__rxor__(y) <==> y^x
|
__str__(x)
x.__str__() <==> str(x)
|
__sub__(x,
y)
x.__sub__(y) <==> x-y
|
__truediv__(x, y)x.__truediv__(y) <==> x/y
|
__xor__(x, y)x.__xor__(y) <==> x^y
|
_setValueParser(...)Set the function that parses the Python value from a string. |
Class Variable Details |
---|
__pyx_vtable__
|
pyval
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sat Aug 18 12:44:27 2007 | http://epydoc.sf.net |