Make Windows paths like Unix.
(self)
| 1710 | self._filename = filename |
| 1711 | |
| 1712 | def FullName(self): |
| 1713 | """Make Windows paths like Unix.""" |
| 1714 | return os.path.abspath(self._filename).replace("\\", "/") |
| 1715 | |
| 1716 | def RepositoryName(self): |
| 1717 | r"""FullName after removing the local path to the repository. |
no outgoing calls