From: Guido van Rossum Date: Tue, 23 Feb 1999 18:34:43 +0000 (+0000) Subject: # Typo in docstring (Retrun -> Return). X-Git-Tag: v1.5.2c1~266 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3366d1c7e613da33f95f49bc52dfbbe67a08cf4e;p=python # Typo in docstring (Retrun -> Return). --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index a0b4f23b57..970d9518fd 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -2884,7 +2884,7 @@ posix_WIFSTOPPED(self, args) #ifdef WIFSIGNALED static char posix_WIFSIGNALED__doc__[] = "WIFSIGNALED(status) -> Boolean\n\ -Retrun true if the process returning 'status' was terminated by a signal."; +Return true if the process returning 'status' was terminated by a signal."; static PyObject * posix_WIFSIGNALED(self, args)