Changed
- Change format of
QualName.__repr__
; From now on, if both the ns
and prefix
are empty, they will not be return.
>>> QualName("html")
QualName(local="html")
>>> QualName("html", "html")
QualName(local="html", ns="http://www.w3.org/1999/xhtml", prefix=None)
- Change format of
Element.__repr__
; From now on, instead of the long name mathml_annotation_xml_integration_point
will return integration_point
in output
# Example output:
Element(name=QualName(local="html"), attrs=[], template=false, integration_point=false)