Fix atexitmodule doc (GH-21456)
https://github.com/python/cpython/commit/52bf4706a3e35dd001f12e102c4082c4987... commit: 52bf4706a3e35dd001f12e102c4082c4987daad5 branch: master author: linchiwei123 <40888469+linchiwei123@users.noreply.github.com> committer: GitHub <noreply@github.com> date: 2020-07-26T20:33:00-03:00 summary: Fix atexitmodule doc (GH-21456) files: M Modules/atexitmodule.c diff --git a/Modules/atexitmodule.c b/Modules/atexitmodule.c index 8cef64ceb9b6b..fd47ddd7731c5 100644 --- a/Modules/atexitmodule.c +++ b/Modules/atexitmodule.c @@ -309,7 +309,7 @@ static PyMethodDef atexit_methods[] = { /* Initialization function. */ PyDoc_STRVAR(atexit__doc__, -"allow programmer to define multiple exit functions to be executed\ +"allow programmer to define multiple exit functions to be executed\n\ upon normal program termination.\n\ \n\ Two public functions, register and unregister, are defined.\n\
participants (1)
-
linchiwei123