Make Windows paths like Unix.
(self)
| 1110 | self._filename = filename |
| 1111 | |
| 1112 | def FullName(self): |
| 1113 | """Make Windows paths like Unix.""" |
| 1114 | return os.path.abspath(self._filename).replace('\\', '/') |
| 1115 | |
| 1116 | def RepositoryName(self): |
| 1117 | """FullName after removing the local path to the repository. |
no outgoing calls
no test coverage detected