(path)
| 26 | |
| 27 | |
| 28 | def abs_path(path): |
| 29 | root = os.path.dirname(__file__) |
| 30 | |
| 31 | for _ in range(3): |
| 32 | root = os.path.join(root, os.pardir) |
| 33 | |
| 34 | path = os.path.join(root, path) |
| 35 | path = os.path.abspath(path) |
| 36 | return path |
| 37 | |
| 38 | |
| 39 | def read_entries(test): |
no test coverage detected