What's this for???
(self,tag,args,name)
| 213 | xmllib.XMLParser.__init__(self) |
| 214 | |
| 215 | def _arg(self,tag,args,name): |
| 216 | "What's this for???" |
| 217 | if args.has_key(name): |
| 218 | v = args[name] |
| 219 | else: |
| 220 | if self.attributes.has_key(tag): |
| 221 | v = self.attributes[tag][name] |
| 222 | else: |
| 223 | v = None |
| 224 | return v |
| 225 | |
| 226 | def ceval(self,tag,args,name): |
| 227 | if args.has_key(name): |
no test coverage detected