bpo-26564: fix obsolete comment in traceback.c (GH-23819) · python/cpython@1c70d40 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 1c70d40

miss-islingtoniritkatriel

and

authored

(cherry picked from commit 40125ab) Co-authored-by: Irit Katriel iritkatriel@yahoo.com

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -622,7 +622,8 @@ PyTraceBack_Print(PyObject *v, PyObject *f)
622 622 return err;
623 623 }
624 624
625 -/* Reverse a string. For example, "abcd" becomes "dcba".
625 +/* Format an integer in range [0; 0xffffffff] to decimal and write it
626 + into the file fd.
626 627
627 628 This function is signal safe. */
628 629