8000 gh-123290: fix reference leaks in `curses` by picnixz · Pull Request #123630 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-123290: fix reference leaks in curses #123630

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

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Modules/_cursesmodule.c
  • Loading branch information
picnixz authored Sep 3, 2024
commit a4935898b20c0f071a66f852cc335115dac4a4d6
2 changes: 1 addition & 1 deletion Modules/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ get_cursesmodule_state_by_cls(PyTypeObject *cls)
return (_cursesmodule_state *)state;
}

// A global borrowed reference to the type error is needed for
// A global borrowed reference to the exception is needed for
// functions that cannot access the module's state at runtime.
static PyObject *PyCursesError;

Expand Down
Loading
0