Home | History | Annotate | Download | only in Lib

Lines Matching refs:split

8 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
75 def split(s):
76 """Split a pathname into two parts: the directory leading up to the final
99 """Split a pathname into a drive specification and the rest of the
108 # Short interfaces to split()
110 def dirname(s): return split(s)[0]
111 def basename(s): return split(s)[1]
116 components = split(s)
161 comps = s.split(colon)
201 components = path.split(colon)