Message 343621 - Python tracker

Message343621

Author nmat
Recipients eryksun, kmaork, nmat, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-05-27.13:04:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558962280.18.0.193884131898.issue36305@roundup.psfhosted.org>
In-reply-to
Content
Is this related to the weird paths I am seeing when getting different output in venv compared to without venv:

from pathlib import Path

filename = Path(__file__)
filename2 = Path('C:\\path\\to\\file.py')

print(filename)
print(filename2)

Where the result is:
----------------------------
Powershell (python.exe run):
file.py
C:\path\to\file.py

Venv run:
C:\path\to\file.py
C:\path\to\file.py
History
Date User Action Args
2019-05-27 13:04:40nmatsetrecipients: + nmat, paul.moore, tim.golden, zach.ware, eryksun, steve.dower, kmaork
2019-05-27 13:04:40nmatsetmessageid: <1558962280.18.0.193884131898.issue36305@roundup.psfhosted.org>
2019-05-27 13:04:40nmatlinkissue36305 messages
2019-05-27 13:04:40nmatcreate