diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-27 05:59:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 05:59:21 (GMT) |
commit | 6bd95f968cfbe0fd7fbcec27e047876f404259ed (patch) | |
tree | 492496531175631fa0cbe8a6a61dc2ae97eda982 | |
parent | 0bc0b732eed658ee259061f126f451e31e402b5c (diff) | |
download | cpython-6bd95f968cfbe0fd7fbcec27e047876f404259ed.zip cpython-6bd95f968cfbe0fd7fbcec27e047876f404259ed.tar.gz cpython-6bd95f968cfbe0fd7fbcec27e047876f404259ed.tar.bz2 |
fixes gh-96292: Fix Trivial Typo in cpython/Modules/atexitmodule.c (GH-96327)
(cherry picked from commit 0ace820bec8892d621a4aadc1feb6c56e25560bf)
Co-authored-by: Ansab Gillani <56605828+ansabgillani@users.noreply.github.com>
-rw-r--r-- | Modules/atexitmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/atexitmodule.c b/Modules/atexitmodule.c index e806730..a1c511e 100644 --- a/Modules/atexitmodule.c +++ b/Modules/atexitmodule.c @@ -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) |