From: Éric Araujo Date: Tue, 31 May 2011 12:08:26 +0000 (+0200) Subject: Fix error message to use the Python name instead of the C name X-Git-Tag: v3.2.1rc2~97^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9bcf8bfb243f66b235a2758573051390a30b6cba;p=thirdparty%2FPython%2Fcpython.git Fix error message to use the Python name instead of the C name --- diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c index d91c99a4a7a0..ea038defb1c7 100644 --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -1091,7 +1091,7 @@ thread_PyThread_exit_thread(PyObject *self) PyDoc_STRVAR(exit_doc, "exit()\n\ -(PyThread_exit_thread() is an obsolete synonym)\n\ +(exit_thread() is an obsolete synonym)\n\ \n\ This is synonymous to ``raise SystemExit''. It will cause the current\n\ thread to exit silently unless the exception is caught.");