]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-20523: pdb searches for .pdbrc in ~ instead of $HOME (GH-11847)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 2 Aug 2019 22:40:14 +0000 (15:40 -0700)
committerGitHub <noreply@github.com>
Fri, 2 Aug 2019 22:40:14 +0000 (15:40 -0700)
commit1ff7dd681c7f3e31524bfada6d6d2786d4e37704
tree3b9410ac7490d17d06801928c76c22e4d871c72d
parent8990ac0ab0398bfb9c62031288030fe7c630c2c7
bpo-20523: pdb searches for .pdbrc in ~ instead of $HOME (GH-11847)

Previously pdb checked the $HOME environmental variable
to find the user .pdbrc. If $HOME is not set, the user
.pdbrc would not be found.

Change pdb to use `os.path.expanduser('~')` to determine
the user's home directory. Thus, if $HOME is not set (as
in tox or on Windows), os.path.expanduser('~') falls
back on other techniques for locating the user's home
directory.

This follows pip's implementation for loading .piprc.

Co-authored-by: Dan Lidral-Porter <dlp@aperiodic.org>
(cherry picked from commit 7ea9a85f132b32347fcbd2cbe1b553a2e9890b56)

Co-authored-by: Timothy Hopper <tdhopper@users.noreply.github.com>
Lib/pdb.py
Lib/test/test_pdb.py
Misc/NEWS.d/next/Core and Builtins/2019-02-15-20-42-36.bpo-20523.rRLrvr.rst [new file with mode: 0644]