Commit 61e2bc74 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-29176: Fix name of the _curses.window class (#52)

Set name to "_curses.window" instead of "_curses.curses window" (with
a space!?).
parent baf7bb30
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment