blob: e55de11cef0b411f7e3484a8a8b6a2802c4d2978 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
discard """
disabled: "posix"
"""
# bug 10952, UNC paths
import os
doAssert r"\\hostname\foo\bar" / "baz" == r"\\hostname\foo\bar\baz"
doAssert r"\\?\C:\foo" / "bar" == r"\\?\C:\foo\bar"
|