Skip to content

Commit

Permalink
bpo-29176: Fix name of the _curses.window class (python#52)
Browse files Browse the repository at this point in the history
Set name to "_curses.window" instead of "_curses.curses window" (with
a space!?).
  • Loading branch information
vstinner authored Feb 12, 2017
1 parent baf7bb3 commit 61e2bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2077,7 +2077,7 @@ static PyGetSetDef PyCursesWindow_getsets[] = {

PyTypeObject PyCursesWindow_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_curses.curses window", /*tp_name*/
"_curses.window", /*tp_name*/
sizeof(PyCursesWindowObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
Expand Down

0 comments on commit 61e2bc7

Please sign in to comment.