Well, others have answered the question, but I thought I'd throw in
that it would be more pythonic to do something like:

def Get_Relative_Path(target, base = None):
    if base is None:
        base = os.curdir
    ...

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to