(self, node)
| 624 | return None |
| 625 | |
| 626 | def _is_string_const(self, node): |
| 627 | return isinstance(node, ast.Constant) and isinstance(node.value, str) |
| 628 | |
| 629 | def write_pot_file(messages, options, fp): |
| 630 | timestamp = time.strftime('%Y-%m-%d %H:%M%z') |
no outgoing calls
no test coverage detected