Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 69ea4b4

Browse filesBrowse files
Fix bpo-27666 backporting error in _cursesmodule.c (#4305)
1 parent 4b544aa commit 69ea4b4
Copy full SHA for 69ea4b4

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎Modules/_cursesmodule.c

Copy file name to clipboardExpand all lines: Modules/_cursesmodule.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,10 +646,10 @@ PyCursesWindow_Box(PyCursesWindowObject *self, PyObject *args)
646646
default:
647647
if (!PyArg_ParseTuple(args,"OO;verch,horch", &temp1, &temp2))
648648
return NULL;
649-
if (!PyCurses_ConvertToChtype(self, temp1, &ch1)) {
649+
if (!PyCurses_ConvertToChtype(temp1, &ch1)) {
650650
return NULL;
651651
}
652-
if (!PyCurses_ConvertToChtype(self, temp2, &ch2)) {
652+
if (!PyCurses_ConvertToChtype(temp2, &ch2)) {
653653
return NULL;
654654
}
655655
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.