_ext/symlink.py [7:19]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dst = './src'
    
    if os.path.exists(dst):
        if os.path.isdir(dst):
            if os.path.islink(dst):
                 os.unlink(dst)
            else:
                shutil.rmtree(dst)
        else:
            if os.path.islink(dst):
                os.unlink(dst)
            else:
                os.remove(dst)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



_ext/symlink.py [24:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dst = './src'

    # This creates a symbolic link on python in tmp directory

    if os.path.exists(dst):
        if os.path.isdir(dst):
            if os.path.islink(dst):
                 os.unlink(dst)
            else:
                shutil.rmtree(dst)
        else:
            if os.path.islink(dst):
                os.unlink(dst)
            else:
                os.remove(dst)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



