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 7253ade

Browse filesBrowse files
Mariattavstinner
authored andcommitted
bpo-29176: Fix name of the _curses.window class (#52) (#532)
Set name to "_curses.window" instead of "_curses.curses window" (with a space!?). (cherry picked from commit 61e2bc7)
1 parent eb65edd commit 7253ade
Copy full SHA for 7253ade

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

‎Modules/_cursesmodule.c

Copy file name to clipboardExpand all lines: Modules/_cursesmodule.c
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.