Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions Modules/clinic/posixmodule.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Modules/posixmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -17308,12 +17308,12 @@ os__supports_virtual_terminal_impl(PyObject *module)
/*[clinic input]
os._inputhook

Calls PyOS_CallInputHook droppong the GIL first
Calls PyOS_InputHook dropping the GIL first
[clinic start generated code]*/

static PyObject *
os__inputhook_impl(PyObject *module)
/*[clinic end generated code: output=525aca4ef3c6149f input=fc531701930d064f]*/
/*[clinic end generated code: output=525aca4ef3c6149f input=b5018fa1ec3aa440]*/
{
int result = 0;
if (PyOS_InputHook) {
Expand All @@ -17327,12 +17327,12 @@ os__inputhook_impl(PyObject *module)
/*[clinic input]
os._is_inputhook_installed

Checks if PyOS_CallInputHook is set
Checks if PyOS_InputHook is set
[clinic start generated code]*/

static PyObject *
os__is_inputhook_installed_impl(PyObject *module)
/*[clinic end generated code: output=3b3eab4f672c689a input=ff177c9938dd76d8]*/
/*[clinic end generated code: output=3b3eab4f672c689a input=757820f79f48820c]*/
{
return PyBool_FromLong(PyOS_InputHook != NULL);
}
Expand Down
Loading