This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zombie110year
Recipients earonesty2, maciozo, paul.moore, steve.dower, tim.golden, zach.ware, zombie110year
Date 2019-12-02.05:39:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1575265188.38.0.627124852028.issue31842@roundup.psfhosted.org>
In-reply-to
Content
Same Error.

It happend by resolving a path which is not under C: driver,
in Windows System.

>>> Path().resolve()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Users\zom\scoop\apps\miniconda3\current\envs\web\lib\pathlib.py", line 1159, in resolve
    s = self._flavour.resolve(self, strict=strict)
  File "C:\Users\zom\scoop\apps\miniconda3\current\envs\web\lib\pathlib.py", line 202, in resolve
    s = self._ext_to_normal(_getfinalpathname(s))
OSError: [WinError 1] Incorrect function: '.'
>>> Path().absolute()
WindowsPath('R:/fileshare/fileshare-s')
>>> Path().absolute().resolve()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Users\zom\scoop\apps\miniconda3\current\envs\web\lib\pathlib.py", line 1159, in resolve
    s = self._flavour.resolve(self, strict=strict)
  File "C:\Users\zom\scoop\apps\miniconda3\current\envs\web\lib\pathlib.py", line 202, in resolve
    s = self._ext_to_normal(_getfinalpathname(s))
OSError: [WinError 1] Incorrect function: 'R:\\fileshare\\fileshare-s'
History
Date User Action Args
2019-12-02 05:39:48zombie110yearsetrecipients: + zombie110year, paul.moore, tim.golden, zach.ware, steve.dower, earonesty2, maciozo
2019-12-02 05:39:48zombie110yearsetmessageid: <1575265188.38.0.627124852028.issue31842@roundup.psfhosted.org>
2019-12-02 05:39:48zombie110yearlinkissue31842 messages
2019-12-02 05:39:48zombie110yearcreate