(style)
| 2841 | |
| 2842 | |
| 2843 | def _styled_win(style): |
| 2844 | # Returns a new curses window with style 'style' and space as the fill |
| 2845 | # character. The initial dimensions are (1, 1), so the window needs to be |
| 2846 | # sized and positioned separately. |
| 2847 | |
| 2848 | win = curses.newwin(1, 1) |
| 2849 | _set_style(win, style) |
| 2850 | return win |
| 2851 | |
| 2852 | |
| 2853 | def _set_style(win, style): |
no test coverage detected