diff options
author | terryjreedy <tjreedy@udel.edu> | 2017-07-08 02:47:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-08 02:47:37 (GMT) |
commit | 552f26680d3806df7c27dd7161fd7d57ac815f78 (patch) | |
tree | ce4e6991bbc34cc7a7249ff4e0902b0143fd6692 /Lib/idlelib/pyshell.py | |
parent | 9d8abf31c430dd83d073660cc92f1fe4ca6f2cd4 (diff) | |
download | cpython-552f26680d3806df7c27dd7161fd7d57ac815f78.zip cpython-552f26680d3806df7c27dd7161fd7d57ac815f78.tar.gz cpython-552f26680d3806df7c27dd7161fd7d57ac815f78.tar.bz2 |
[3.6] bpo-8231: Call idlelib.IdleConf.GetUserCfgDir only once. (GH-2629) (#2631)
(cherry picked from commit 223c7e7)
Diffstat (limited to 'Lib/idlelib/pyshell.py')
-rwxr-xr-x | Lib/idlelib/pyshell.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py index be7bd3d..47df744 100755 --- a/Lib/idlelib/pyshell.py +++ b/Lib/idlelib/pyshell.py @@ -117,8 +117,8 @@ class PyShellEditorWindow(EditorWindow): self.text.bind("<<clear-breakpoint-here>>", self.clear_breakpoint_here) self.text.bind("<<open-python-shell>>", self.flist.open_shell) - self.breakpointPath = os.path.join(idleConf.GetUserCfgDir(), - 'breakpoints.lst') + self.breakpointPath = os.path.join( + idleConf.userdir, 'breakpoints.lst') # whenever a file is changed, restore breakpoints def filename_changed_hook(old_hook=self.io.filename_change_hook, self=self): |