From: Irit Katriel Date: Thu, 17 Dec 2020 12:33:07 +0000 (+0000) Subject: bpo-26564: fix obsolete comment in traceback.c (GH-23819) X-Git-Tag: v3.10.0a4~143 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40125ab3252453bf205ed906e46bf9741c27bf9d;p=thirdparty%2FPython%2Fcpython.git bpo-26564: fix obsolete comment in traceback.c (GH-23819) --- diff --git a/Python/traceback.c b/Python/traceback.c index 708678facf7c..b82cfd3665ce 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -622,7 +622,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. */