Update lxml stubs to add Element.append and Element.text (#629)

This commit is contained in:
Roy Williams
2016-10-25 12:04:42 -07:00
committed by Guido van Rossum
parent c8f324298d
commit bfbe4f8540

View File

@@ -22,6 +22,8 @@ class _Element:
pass
attrib = ... # type: MutableMapping[str, str]
text = ... # type: AnyStr
def append(self, element: '_Element') -> '_Element': ...
class ElementBase(_Element):
pass