Issue #23815: Fixed crashes related to directly created instances of types in

_tkinter and curses.panel modules.
This commit is contained in:
Serhiy Storchaka 2016-05-08 20:46:22 +03:00
parent 4c35964b76
commit e3f1b0911e
5 changed files with 16 additions and 3 deletions

View file

@ -649,6 +649,8 @@ class TclTest(unittest.TestCase):
expected = {'a': (1, 2, 3), 'something': 'foo', 'status': ''}
self.assertEqual(splitdict(tcl, arg), expected)
def test_new_tcl_obj(self):
self.assertRaises(TypeError, _tkinter.Tcl_Obj)
class BigmemTclTest(unittest.TestCase):