Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed _realpath() for UNC pathes like '\\examplepath\mypath' (will be…
…come '//examplepath/mypath'). See #1. Here is a comparison between the output of the old and new version of _realpath(): Input: '/a/b/c/' Output old: '/a/b/c/' Output new: '/a/b/c' Input: '//a/b/c' Output old: '/a/b/c' Output new: '//a/b/c' Input: 'a//b' Output old: 'a/b' Output new: 'a//b'
- Loading branch information