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 demirbey
Recipients demirbey
Date 2021-07-30.13:41:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627652490.46.0.139202126037.issue44778@roundup.psfhosted.org>
In-reply-to
Content
PureWindowsPath('C:\\Users')

When I call __str__ method of PureWindowsPath on Windows,Cygwin,Linux enviroment, I get "C:\Users" as expected. But when I run the same code on MingW environment I get "C:/Users". 

from pathlib import PureWindowsPath, Path

p = PureWindowsPath('C:\\Users')

print(str(p))
History
Date User Action Args
2021-07-30 13:41:30demirbeysetrecipients: + demirbey
2021-07-30 13:41:30demirbeysetmessageid: <1627652490.46.0.139202126037.issue44778@roundup.psfhosted.org>
2021-07-30 13:41:30demirbeylinkissue44778 messages
2021-07-30 13:41:30demirbeycreate