Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 61e2bc7

Browse files
authored
bpo-29176: Fix name of the _curses.window class (#52)
Set name to "_curses.window" instead of "_curses.curses window" (with a space!?).
1 parent baf7bb3 commit 61e2bc7

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
@@ -2077,7 +2077,7 @@ static PyGetSetDef PyCursesWindow_getsets[] = {
20772077

20782078
PyTypeObject PyCursesWindow_Type = {
20792079
PyVarObject_HEAD_INIT(NULL, 0)
2080-
"_curses.curses window", /*tp_name*/
2080+
"_curses.window", /*tp_name*/
20812081
sizeof(PyCursesWindowObject), /*tp_basicsize*/
20822082
0, /*tp_itemsize*/
20832083
/* methods */

0 commit comments

Comments
 (0)