mercurial/pathutil.py
changeset 51285 8b2ea2246a5f
parent 51284 f15cb5111a1e
child 51287 f4a0806081f2
equal deleted inserted replaced
51284:f15cb5111a1e 51285:8b2ea2246a5f
   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