(self)
| 145 | return typename + ' ' + name |
| 146 | |
| 147 | def __str__(self): |
| 148 | argstr = ', '.join([self._format_arg(*a) for a in self.args]) |
| 149 | if self.doc: |
| 150 | doccomment = '/* %s */\n' % self.doc |
| 151 | else: |
| 152 | doccomment = '' |
| 153 | return '%s%s %s(%s)' % (doccomment, self.return_type, self.name, argstr) |
| 154 | |
| 155 | def api_hash(self): |
| 156 | m = hashlib.md5() |
nothing calls this directly
no test coverage detected