Make Windows paths like Unix.
(self)
| 1755 | self._filename = filename |
| 1756 | |
| 1757 | def FullName(self): |
| 1758 | """Make Windows paths like Unix.""" |
| 1759 | return os.path.abspath(self._filename).replace("\\", "/") |
| 1760 | |
| 1761 | def RepositoryName(self): |
| 1762 | r"""FullName after removing the local path to the repository. |
no outgoing calls
no test coverage detected