Return full path to a file given its path inside the Arrow repo.
(path)
| 31 | |
| 32 | |
| 33 | def arrow_path(path): |
| 34 | """ |
| 35 | Return full path to a file given its path inside the Arrow repo. |
| 36 | """ |
| 37 | return os.path.join(ARROW_ROOT_DEFAULT, path) |
| 38 | |
| 39 | |
| 40 | class InvalidArrowSource(Exception): |