[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-05-21 Thread miss-islington
miss-islington added the comment: New changeset ee51c56c02d8eac28828a116fa35064919433d20 by Barney Gale in branch '3.10': [3.10] bpo-38671: Add test that `pathlib.Path.resolve()` returns an absolute path. (GH-26184) (GH-26270)

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-05-20 Thread Barney Gale
Change by Barney Gale : -- pull_requests: +24875 pull_request: https://github.com/python/cpython/pull/26270 ___ Python tracker ___

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-05-13 Thread Carol Willing
Carol Willing added the comment: New changeset ea14a0749a4f19b29236fc0acc4b556d9243bc6f by Miss Islington (bot) in branch '3.10': bpo-43757: Document os.path.realpath(strict=True) in 3.10 whatsnew. (GH-26090) (#26099)

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-05-13 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24740 pull_request: https://github.com/python/cpython/pull/26099 ___ Python tracker

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-05-12 Thread Barney Gale
Change by Barney Gale : -- pull_requests: +24729 pull_request: https://github.com/python/cpython/pull/26090 ___ Python tracker ___

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-05-12 Thread Barney Gale
Change by Barney Gale : -- pull_requests: +24727 pull_request: https://github.com/python/cpython/pull/26088 ___ Python tracker ___

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-04-28 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-04-28 Thread Steve Dower
Steve Dower added the comment: New changeset baecfbd849dbf42360d3a84af6cc13160838f24d by Barney Gale in branch 'master': bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path (GH-25264) https://github.com/python/cpython/commit/baecfbd849dbf42360d3a84af6cc13160838f24d

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-04-26 Thread Steve Dower
Steve Dower added the comment: I'm happy with the PR as it stands now. Anyone else have an opinion? -- nosy: +eryksun, steve.dower ___ Python tracker ___

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-04-07 Thread Barney Gale
Change by Barney Gale : -- keywords: +patch pull_requests: +24000 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25264 ___ Python tracker ___

[issue43757] pathlib: move 'resolve()' logic out of path flavour

2021-04-06 Thread Barney Gale
New submission from Barney Gale : Under-the-hood functionality in pathlib is divided between: - The 'flavour', which implements path syntax (separators, casefolding, etc) - The 'accessor', which accesses the local (file)system. The '_WindowsFlavour/_PosixFlavour.resolve()' function is