(self, name)
| 498 | self.writeline('%s = missing' % ' = '.join(undefs)) |
| 499 | |
| 500 | def func(self, name): |
| 501 | if self.environment.is_async: |
| 502 | return 'async def %s' % name |
| 503 | return 'def %s' % name |
| 504 | |
| 505 | def macro_body(self, node, frame): |
| 506 | """Dump the function def of a macro or call block.""" |
no outgoing calls
no test coverage detected