Message374638
Moreover, output from PurePosixPath.as_posix() is not that straightforward?
Please take a look below example from python3.6 + linux + docker
```
>>> winPath = r'\workspace\xxx\test_fixture\user-restore-success.zip'
>>> pWIN = pathlib.PureWindowsPath(winPath)
>>> pppFromWinPath = pathlib.PurePosixPath(winPath)
>>> pppFromPwp = pathlib.PurePosixPath(pWIN)
>>> pppFromWinPath.as_posix()
'\\workspace\\xxx\\test_fixture\\user-restore-success.zip'
>>> pppFromPwp.as_posix()
'\\/workspace/xxx/test_fixture/user-restore-success.zip'
```
* Construction PurePosixPath from rawString, `as_posix()` gives '\\workspace\\xxx\\test_fixture\\user-restore-success.zip'
* Construction PurePosixPath from PureWindowsPath, `as_posix()` gives '\\/workspace/xxx/test_fixture/user-restore-success.zip' |
|
| Date |
User |
Action |
Args |
| 2020-07-31 11:27:58 | Mond Wan | set | recipients:
+ Mond Wan, paul.moore, ronaldoussoren, tim.golden, ned.deily, zach.ware, koobs, steve.dower |
| 2020-07-31 11:27:58 | Mond Wan | set | messageid: <[email protected]> |
| 2020-07-31 11:27:58 | Mond Wan | link | issue41448 messages |
| 2020-07-31 11:27:58 | Mond Wan | create | |
|