Change the data object to a path relative to the module.
(self, subpath)
| 13 | self.dirname = os.path.abspath(dirname) |
| 14 | |
| 15 | def push(self, subpath): |
| 16 | """ |
| 17 | Change the data object to a path relative to the module. |
| 18 | """ |
| 19 | dirname = os.path.normpath(os.path.join(self.dirname, subpath)) |
| 20 | ret = Data(self.name) |
| 21 | ret.dirname = dirname |
| 22 | return ret |
| 23 | |
| 24 | def path(self, path): |
| 25 | """ |
no test coverage detected