Home | History | Annotate | Download | only in Lib

Lines Matching refs:split

10 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
59 def split(s):
60 """Split a pathname into two parts: the directory leading up to the final
79 """Split a pathname into a drive specification and the rest of the
88 # Short interfaces to split()
90 def dirname(s): return split(s)[0]
91 def basename(s): return split(s)[1]
96 components = split(s)
139 comps = s.split(":")
206 components = path.split(':')