Join paths with a slash.
(self, path, *paths)
| 246 | return False |
| 247 | |
| 248 | def join(self, path, *paths): |
| 249 | """Join paths with a slash.""" |
| 250 | return "/".join((path,) + paths) |
| 251 | |
| 252 | def read(self, filename, binary_mode=False, size=None, continue_from=None): |
| 253 | """Reads contents of a file to a string. |
no outgoing calls