Skip to content

v0.1.1 - 2025-03-09

Compare
Choose a tag to compare
@awolverp awolverp released this 09 Mar 17:06
· 19 commits to master since this release

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)