merge 3.4

This commit is contained in:
Benjamin Peterson 2016-08-15 21:43:57 -07:00
commit b1c6bdc76a
3 changed files with 12 additions and 2 deletions

View file

@ -190,6 +190,8 @@ class TestCurses(unittest.TestCase):
self.assertRaises(ValueError, stdscr.getstr, -400)
self.assertRaises(ValueError, stdscr.getstr, 2, 3, -400)
self.assertRaises(ValueError, stdscr.instr, -2)
self.assertRaises(ValueError, stdscr.instr, 2, 3, -2)
def test_module_funcs(self):