From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 17 Dec 2020 13:19:49 +0000 (-0800) Subject: bpo-26564: fix obsolete comment in traceback.c (GH-23819) X-Git-Tag: v3.8.7~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cecbaa3a80d5ae28cdd4129d6d2c4395c12a89e4;p=thirdparty%2FPython%2Fcpython.git bpo-26564: fix obsolete comment in traceback.c (GH-23819) (cherry picked from commit 40125ab3252453bf205ed906e46bf9741c27bf9d) Co-authored-by: Irit Katriel --- diff --git a/Python/traceback.c b/Python/traceback.c index 8e2f15e85d6b..0aa51ad37f49 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -623,7 +623,8 @@ PyTraceBack_Print(PyObject *v, PyObject *f) return err; } -/* Reverse a string. For example, "abcd" becomes "dcba". +/* Format an integer in range [0; 0xffffffff] to decimal and write it + into the file fd. This function is signal safe. */