local_name property

local_name property

Returns the local part of the qualified name of this node. For nodes of any type other than Node.ELEMENT_NODE and Node.ATTRIBUTE_NODE and nodes created with a DOM Level 1 method, such as Document.create_element, this is always null.

Remarks

Reference:

DOM Standard.

Definition:

@property
def local_name(self):
    ...
@local_name.setter
def local_name(self, value):
    ...

See Also