Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
AlbinaGiliazova authored Aug 9, 2018
commit 8d050b8f7f4680fd1b03ad2712d2e0f6e697743f
2 changes: 1 addition & 1 deletion Lib/pathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def _split_extended_path(self, s, ext_prefix=ext_namespace_prefix):
if s1 == 'Global' or s1 == 'GLOBAL':
prefix += s[:6]
# For example, Path('//?/Global/Z:/').drive
if s[8] == ':':
if s[8:9] == ':':
prefix += s[6:7]
s = s[7:]
# For example, r'\\?\Global\UNC\server\share'
Expand Down