(self)
| 1078 | @cpython_only |
| 1079 | @requires_curses_func('panel') |
| 1080 | def test_disallow_instantiation(self): |
| 1081 | # Ensure that the type disallows instantiation (bpo-43916) |
| 1082 | w = curses.newwin(10, 10) |
| 1083 | panel = curses.panel.new_panel(w) |
| 1084 | check_disallow_instantiation(self, type(panel)) |
| 1085 | |
| 1086 | @requires_curses_func('is_term_resized') |
| 1087 | def test_is_term_resized(self): |
nothing calls this directly
no test coverage detected