8000 bpo-1635741 port _curses_panel to multi-phase init (PEP 489) by koubaa · Pull Request #21986 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-1635741 port _curses_panel to multi-phase init (PEP 489) #21986

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 16 commits into from
Sep 7, 2020
Prev Previous commit
Next Next commit
fix
  • Loading branch information
koubaa committed Sep 5, 2020
commit 174c64e292073afd233d1cd44dc76b4ece7c152c
2 changes: 1 addition & 1 deletion Modules/_curses_panel.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ PyCursesPanel_Dealloc(PyCursesPanelObject *po)
}
(void)del_panel(po->pan);
if (po->wo != NULL) {
Py_DECREF(po->wo);_curses_panelstate
Py_DECREF(po->wo);
remove_lop(po);
}
PyObject_DEL(po);
Expand Down
0