(self,string)
| 136 | self.addChild(c) |
| 137 | |
| 138 | def getAttributeValue(self,string): |
| 139 | try: |
| 140 | return self.attributes[string] |
| 141 | except KeyError: |
| 142 | return None |
| 143 | |
| 144 | def removeAttribute(self, key): |
| 145 | if key in self.attributes: |
no outgoing calls
no test coverage detected