Message355892
| Author | uranusjr |
|---|---|
| Recipients | uranusjr |
| Date | 2019-11-03.09:55:30 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1572774931.11.0.993470333259.issue38671@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
Originally from https://discuss.python.org/t/pathlib-absolute-vs-resolve/2573/4 >>> import pathlib >>> pathlib.Path().resolve() WindowsPath('C:/temp') >>> list(pathlib.Path().iterdir()) [] >>> pathlib.Path('foo').resolve() WindowsPath('foo') >>> pathlib.Path('bar').touch() >>> pathlib.Path('bar').resolve() WindowsPath('C:/temp/bar') |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-11-03 09:55:31 | uranusjr | set | recipients: + uranusjr |
| 2019-11-03 09:55:31 | uranusjr | set | messageid: <1572774931.11.0.993470333259.issue38671@roundup.psfhosted.org> |
| 2019-11-03 09:55:31 | uranusjr | link | issue38671 messages |
| 2019-11-03 09:55:30 | uranusjr | create | |