Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(0) | Call(0) | Derive(0) | Import(0)
src/t/h/thug-HEAD/src/DOM/W3C/Text.py thug(Download)
def nodeType(self): return Node.TEXT_NODE def replaceData(self, offset, count, arg): s = self.data[:offset] + arg + self.data[offset + count:]