Lines Matching full:data
4 ## is just to pass the data through. Based on TestSGMLParser from sgmllib.py
13 self.data = ""
17 def handle_data(self, data):
18 self.data = self.data + data
21 data = self.data
22 if data:
23 self.data = ""
24 self.write(data)
26 def write (self, data):
27 return self.fp.write(data)
43 def handle_comment(self, data):