[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2020-01-28 Thread miss-islington
miss-islington added the comment: New changeset 595b516965ee88b817dc1b3d7713e1f3f263634d by Miss Islington (bot) in branch '3.8': bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windows (GH-17961)

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2020-01-28 Thread Steve Dower
Steve Dower added the comment: Thanks, Christoph! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2020-01-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +17608 pull_request: https://github.com/python/cpython/pull/18229 ___ Python tracker ___

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2020-01-28 Thread Steve Dower
Steve Dower added the comment: New changeset c45a2aa9e255b5c7c211faa79f6b23895b64ab27 by Steve Dower (Christoph Reiter) in branch 'master': bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windows (GH-17961)

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2020-01-12 Thread Christoph Reiter
Change by Christoph Reiter : -- keywords: +patch pull_requests: +17369 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17961 ___ Python tracker

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2019-11-21 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2019-11-21 Thread Anthony Sottile
Change by Anthony Sottile : -- nosy: +Anthony Sottile ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2019-11-21 Thread Batuhan
Change by Batuhan : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2019-11-21 Thread Batuhan
Change by Batuhan : -- nosy: +BTaskaya, steve.dower versions: +Python 3.9 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list

[issue38883] Path.home() should ignore HOME env var like os.path.expanduser()

2019-11-21 Thread Christoph Reiter
New submission from Christoph Reiter : In issue36264 os.path.expanduser() was changed to no longer use the HOME environment variable on Windows. There are two more ways in the stdlib to get the user directory, pathlib.Path.home() and pathlib.Path.expanduser() which internally use