diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-04-05 16:25:21 +0200 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-04-05 16:25:21 +0200 |
commit | 0130ad14dd6e9f08590db93cb6a9cb059118dc7c (patch) | |
tree | 5737d01c893c6958ca10c1d7e6873494b433d9dc | |
parent | 4771cca81722a7ae08451fd1969489c2e4f1ae40 (diff) | |
parent | 73d2da4209379fee0ea55a805c63e48644ca5ef8 (diff) | |
download | cpython-git-0130ad14dd6e9f08590db93cb6a9cb059118dc7c.tar.gz |
Merge.
-rw-r--r-- | Lib/idlelib/tabbedpages.py | 4 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Lib/idlelib/tabbedpages.py b/Lib/idlelib/tabbedpages.py index f7917021fb..2557732755 100644 --- a/Lib/idlelib/tabbedpages.py +++ b/Lib/idlelib/tabbedpages.py @@ -78,7 +78,7 @@ class TabSet(Frame): def remove_tab(self, tab_name): """Remove the tab named <tab_name>""" if not tab_name in self._tab_names: - raise KeyError("No such Tab: '%s" % page_name) + raise KeyError("No such Tab: '%s" % tab_name) self._tab_names.remove(tab_name) self._arrange_tabs() @@ -88,7 +88,7 @@ class TabSet(Frame): if tab_name == self._selected_tab: return if tab_name is not None and tab_name not in self._tabs: - raise KeyError("No such Tab: '%s" % page_name) + raise KeyError("No such Tab: '%s" % tab_name) # deselect the current selected tab if self._selected_tab is not None: @@ -19,6 +19,9 @@ Core and Builtins Library ------- +- Issue #14496: Fix wrong name in idlelib/tabbedpages.py. + Patch by Popa Claudiu. + - Issue #3033: Add displayof parameter to tkinter font. Patch by Guilherme Polo. - Issue #14482: Raise a ValueError, not a NameError, when trying to create |