mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
gh-102778: revert changes to idlelib (#102825)
This commit is contained in:
parent
ccb5af7bfe
commit
4d1f033986
4 changed files with 9 additions and 24 deletions
|
@ -19,7 +19,6 @@ class StackBrowserTest(unittest.TestCase):
|
|||
except NameError:
|
||||
svs.last_type, svs.last_value, svs.last_traceback = (
|
||||
sys.exc_info())
|
||||
svs.last_exc = svs.last_value
|
||||
|
||||
requires('gui')
|
||||
cls.root = Tk()
|
||||
|
@ -28,7 +27,7 @@ class StackBrowserTest(unittest.TestCase):
|
|||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
svs = stackviewer.sys
|
||||
del svs.last_exc, svs.last_traceback, svs.last_type, svs.last_value
|
||||
del svs.last_traceback, svs.last_type, svs.last_value
|
||||
|
||||
cls.root.update_idletasks()
|
||||
## for id in cls.root.tk.call('after', 'info'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue