diff options
Diffstat (limited to 'Python/formatter_unicode.c')
-rw-r--r-- | Python/formatter_unicode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 2fe446a..a6516dc 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -1439,8 +1439,7 @@ _PyLong_FormatAdvancedWriter(_PyUnicodeWriter *writer, case 'x': case 'X': case 'n': - /* no type conversion needed, already an int (or long). do - the formatting */ + /* no type conversion needed, already an int. do the formatting */ result = format_long_internal(obj, &format, writer); break; |