#10661: give QName a nicer repr.
This commit is contained in:
parent
fb1720b0f5
commit
b56c0e24d6
|
@ -584,6 +584,8 @@ class QName:
|
||||||
self.text = text_or_uri
|
self.text = text_or_uri
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.text
|
return self.text
|
||||||
|
def __repr__(self):
|
||||||
|
return '<QName %r>' % self.text
|
||||||
def __hash__(self):
|
def __hash__(self):
|
||||||
return hash(self.text)
|
return hash(self.text)
|
||||||
def __le__(self, other):
|
def __le__(self, other):
|
||||||
|
|
Loading…
Reference in New Issue