Closed as not planned
Description
Bug report
Bug description:
# on Windows
import os
import pathlib
parts = "\\\\", "host", "share", "whatever"
os.path.join(*parts) # way 1, os.path is ntpath here
pathlib.Path(*parts) # way 2, uses ntpath underneath
# None of these ways create a valid UNC. As a developer, I expect it to work the same as posixpath.join or have it documented why it doesn't
CPython versions tested on:
3.8, 3.9, 3.10, 3.11, 3.12, 3.13
Operating systems tested on:
Windows