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

Lines Matching refs:split

9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
58 def split(s):
59 """Split a pathname into two parts: the directory leading up to the final
78 """Split a pathname into a drive specification and the rest of the
87 # Short interfaces to split()
89 def dirname(s): return split(s)[0]
90 def basename(s): return split(s)[1]
95 components = split(s)
138 comps = s.split(":")
205 components = path.split(':')