Home | History | Annotate | Download | only in python2.7

Lines Matching full:rest

85 # rest).  If the path ends in '/', tail will be empty.  If there is no
108 # Split a pathname into a drive specification and the rest of the
372 def _joinrealpath(path, rest, seen):
373 if isabs(rest):
374 rest = rest[1:]
377 while rest:
378 name, _, rest = rest.partition(sep)
403 # Return already resolved part + rest of the path unchanged.
404 return join(newpath, rest), False
408 return join(path, rest), False