You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you had for example the following xml snippet <namespace:hello> greeting='wave'> and the corresponding BytesStart for that, (let's called the element), element.unescaped() would return namespace:hello> greeting='wave', while .name() and local_name() only include the actual tag part (namespace:hello> and hello> respectively), and not the attributes.
This goes against the documentation which says it should just return the unescaped tag name.
The text was updated successfully, but these errors were encountered:
If you had for example the following xml snippet
<namespace:hello> greeting='wave'>
and the corresponding BytesStart for that, (let's called theelement
),element.unescaped()
would returnnamespace:hello> greeting='wave'
, while.name()
andlocal_name()
only include the actual tag part (namespace:hello>
andhello>
respectively), and not the attributes.This goes against the documentation which says it should just return the unescaped tag name.
The text was updated successfully, but these errors were encountered: