3 # Like mkdir, but also make intermediate directories if necessary.
4 # It is not an error if the given directory already exists (as long
5 # as it is a directory).
6 # Errors are not treated specially -- you just get a Python exception.
11 for p
in sys
.argv
[1:]:
15 if p
and not os
.path
.isdir(p
):
16 head
, tail
= os
.path
.split(p
)