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 iamsav
Recipients iamsav
Date 2019-09-10.06:30:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568097037.9.0.584511449633.issue38081@roundup.psfhosted.org>
In-reply-to
Content
Windows 10:
```
C:\Users\User\Downloads>py -3.7 -c "import os.path;os.path.realpath('nul')"

C:\Users\User\Downloads>py -3.8 -c "import os.path;os.path.realpath('nul')"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "C:\Python38\lib\ntpath.py", line 592, in realpath
    path = _getfinalpathname_nonstrict(path)
  File "C:\Python38\lib\ntpath.py", line 566, in _getfinalpathname_nonstrict
    path = _readlink_deep(path, seen)
  File "C:\Python38\lib\ntpath.py", line 536, in _readlink_deep
    path = _nt_readlink(path)
OSError: [WinError 1] Неверная функция: 'nul'
```
I think it's a bug. pip uses this code, so 'pip install pandas' won't work in 3.8
History
Date User Action Args
2019-09-10 06:30:38iamsavsetrecipients: + iamsav
2019-09-10 06:30:37iamsavsetmessageid: <1568097037.9.0.584511449633.issue38081@roundup.psfhosted.org>
2019-09-10 06:30:37iamsavlinkissue38081 messages
2019-09-10 06:30:37iamsavcreate