(self, filename)
| 101 | pass |
| 102 | |
| 103 | def canonize(self, filename): |
| 104 | if not os.path.isabs(filename): |
| 105 | try: |
| 106 | pwd = os.getcwd() |
| 107 | except OSError: |
| 108 | pass |
| 109 | else: |
| 110 | filename = os.path.join(pwd, filename) |
| 111 | return os.path.normpath(filename) |
| 112 | |
| 113 | |
| 114 | def _test(): # TODO check and convert to htest |
no test coverage detected