mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
make _tkinter._flatten check the result of PySequence_Size for errors #3880
This commit is contained in:
parent
4a69410e9f
commit
b3619be995
2 changed files with 13 additions and 2 deletions
|
@ -2,10 +2,19 @@
|
|||
|
||||
import unittest
|
||||
import os
|
||||
import _tkinter
|
||||
from test import test_support
|
||||
from Tkinter import Tcl
|
||||
from _tkinter import TclError
|
||||
|
||||
|
||||
class TkinterTest(unittest.TestCase):
|
||||
|
||||
def testFlattenLen(self):
|
||||
# flatten(<object with no length>)
|
||||
self.assertRaises(TypeError, _tkinter._flatten, True)
|
||||
|
||||
|
||||
class TclTest(unittest.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
|
@ -151,7 +160,7 @@ class TclTest(unittest.TestCase):
|
|||
os.environ['DISPLAY'] = old_display
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(TclTest)
|
||||
test_support.run_unittest(TclTest, TkinterTest)
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue