diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-27 05:53:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 05:53:47 (GMT) |
commit | 5d82cefdc4f04e87fc5ed9b5de2415de79e89d89 (patch) | |
tree | d577b385f57f7b759593cb99da732725e2986a10 /Modules | |
parent | c216af8e8e202c72ab5ad0ac65475f0e1ca37764 (diff) | |
download | cpython-5d82cefdc4f04e87fc5ed9b5de2415de79e89d89.zip cpython-5d82cefdc4f04e87fc5ed9b5de2415de79e89d89.tar.gz cpython-5d82cefdc4f04e87fc5ed9b5de2415de79e89d89.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>
Diffstat (limited to 'Modules')
-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 95c653c..7df2db5 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) |