Like os.path.join, but encoding aware (for safe-joining see `safejoin`)
(*args)
| 491 | |
| 492 | |
| 493 | def fsjoin(*args): |
| 494 | """ |
| 495 | Like os.path.join, but encoding aware |
| 496 | (for safe-joining see `safejoin`) |
| 497 | """ |
| 498 | return fs_encode(os.path.join(*args)) |
| 499 | |
| 500 | |
| 501 | def remove_chars(value, repl): |
no test coverage detected