Skip to content

Commit 51c864c

Browse files
vstinnerMariatta
authored andcommitted
bpo-29176: Fix name of the _curses.window class (#52)
Set name to "_curses.window" instead of "_curses.curses window" (with a space!?). (cherry picked from commit 61e2bc7)
1 parent 130c4ec commit 51c864c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_cursesmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2082,7 +2082,7 @@ static PyGetSetDef PyCursesWindow_getsets[] = {
20822082

20832083
PyTypeObject PyCursesWindow_Type = {
20842084
PyVarObject_HEAD_INIT(NULL, 0)
2085-
"_curses.curses window", /*tp_name*/
2085+
"_curses.window", /*tp_name*/
20862086
sizeof(PyCursesWindowObject), /*tp_basicsize*/
20872087
0, /*tp_itemsize*/
20882088
/* methods */

0 commit comments

Comments
 (0)