(self, feature)
| 219 | return self is other |
| 220 | |
| 221 | def getInterface(self, feature): |
| 222 | if self.isSupported(feature, None): |
| 223 | return self |
| 224 | else: |
| 225 | return None |
| 226 | |
| 227 | # The "user data" functions use a dictionary that is only present |
| 228 | # if some user data has been set, so be careful not to assume it |
nothing calls this directly
no test coverage detected