gh-102778: revert changes to idlelib (#102825)

This commit is contained in:
Irit Katriel 2023-03-19 16:19:59 +00:00 committed by GitHub
parent ccb5af7bfe
commit 4d1f033986
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 24 deletions

View file

@ -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'):