fixes gh-96292: Fix Trivial Typo in cpython/Modules/atexitmodule.c (#96327)

This commit is contained in:
Ansab Gillani 2022-08-27 10:33:29 +05:00 committed by GitHub
parent e534440510
commit 0ace820bec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -185,7 +185,7 @@ PyDoc_STRVAR(atexit_run_exitfuncs__doc__,
\n\
Run all registered exit functions.\n\
\n\
If a callaback raises an exception, it is logged with sys.unraisablehook.");
If a callback raises an exception, it is logged with sys.unraisablehook.");
static PyObject *
atexit_run_exitfuncs(PyObject *module, PyObject *unused)