jaraco / jaraco.windows

MIT License
29 stars 7 forks source link

`symlink` fallback in `jaraco/windows/bugs/vista-symlink-islink-bug.py` has inverted `target` and `link` param compared to `jaraco.windows.filesystem.symlink` #27

Closed Avasam closed 1 month ago

Avasam commented 2 months ago

jaraco.windows.filesystem.symlink:

def symlink(target, link, target_is_directory=False): ...

jaraco.windows.bugs.vista-symlink-islink-bug.symlink:

def symlink(link, target, target_is_directory=False): ...
jaraco commented 1 month ago

The stuff in .bugs is ignorable, I think. Those modules were migrated from a non-project directory and they were used to keep track of bugs I was following. They're mostly cruft at this point. Still, makes sense to clean them up.