Skip to content

Commit 8630bc3

Browse files
Apply suggestion from @serhiy-storchaka
1 parent bce30e5 commit 8630bc3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_cursesmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3547,7 +3547,7 @@ _curses_window_insch_impl(PyCursesWindowObject *self, int group_left_1,
35473547
if (type == 1) {
35483548
/* winsch() does not locale-decode a byte above 127 on a wide build,
35493549
unlike waddch(), so decode it here and insert it as a wide
3550-
character. */
3550+
character. (gh-153864) */
35513551
chtype cch = ch_ & A_CHARTEXT;
35523552
if (cch > 127) {
35533553
wint_t wc = btowc((int)cch);

0 commit comments

Comments
 (0)