Skip to content

Commit be1f360

Browse files
committed
remove useless comments
1 parent 4a9cdb2 commit be1f360

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Modules/_cursesmodule.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2057,13 +2057,10 @@ _curses_window_inch_impl(PyCursesWindowObject *self, int group_right_1,
20572057
const char *funcname;
20582058

20592059
if (!group_right_1) {
2060-
// winch() should never return (chtype)ERR, but this cannot
2061-
// be guaranteed since this is an implementation detail.
20622060
rtn = winch(self->win);
20632061
funcname = "winch";
20642062
}
20652063
else {
2066-
// mvwinch() may return ERR (as a chtype) if the move fails.
20672064
rtn = mvwinch(self->win, y, x);
20682065
funcname = "mvwinch";
20692066
}

0 commit comments

Comments
 (0)