(self, filename: str)
| 387 | return not filename.startswith("<") or filename in ["<stdin>", "<string>"] |
| 388 | |
| 389 | def _get_category(self, filename: str) -> int: |
| 390 | return CATEGORY_PYTHON if self._is_python(filename) else CATEGORY_NATIVE |
| 391 | |
| 392 | def _intern_string(self, s): |
| 393 | """Intern a string in the global string table.""" |
no test coverage detected