bpo-26564: fix obsolete comment in traceback.c (GH-23819)

This commit is contained in:
Irit Katriel 2020-12-17 12:33:07 +00:00 committed by GitHub
parent ba760f3710
commit 40125ab325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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. */