8000 [3.6] bpo-29176: Fix name of the _curses.window class (GH-52) by Mariatta · Pull Request #532 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.6] bpo-29176: Fix name of the _curses.window class (GH-52) #532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
  • Loading branch information
vstinner authored and Mariatta committed Mar 7, 2017
commit 51c864c048bfb5ede47d5cfdd6236f150584116a
2 changes: 1 addition & 1 deletion Modules/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2082,7 +2082,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