Skip to content

Fix ntpath.normpath() for drive-relative paths #126780

Description

@nineteendo

Bug report

Bug description:

from @eryksun (#117855 (comment)):

Note that the behavior for normalizing drive-relative paths is currently wrong in this case on Windows:

>>> nt._path_normpath('C:./spam')
'C:.\\spam'

That's the result that we want here when returning an explicit current directory for internal use, but that's not the expected behavior for normpath(). The fallback implementation that's used on POSIX gets it right:

>>> ntpath.normpath('C:./spam')
'C:spam'

CPython versions tested on:

CPython main branch

Operating systems tested on:

Windows

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    OS-windowsinterpreter-core(Objects, Python, Grammar, and Parser dirs)type-bugAn unexpected behavior, bug, or error

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions