equal
deleted
inserted
replaced
390 |
390 |
391 # forward two methods from posixpath that do what we need, but we'd |
391 # forward two methods from posixpath that do what we need, but we'd |
392 # rather not let our internals know that we're thinking in posix terms |
392 # rather not let our internals know that we're thinking in posix terms |
393 # - instead we'll let them be oblivious. |
393 # - instead we'll let them be oblivious. |
394 join = posixpath.join |
394 join = posixpath.join |
395 dirname = posixpath.dirname # type: Callable[[bytes], bytes] |
395 dirname: Callable[[bytes], bytes] = posixpath.dirname |