diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-27 19:40:23 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-27 19:40:23 +0300 |
commit | 9927bb7a2e04addea58d3df36ca4ea47113b0192 (patch) | |
tree | 160059a15a0abf9fd1dcd7a445b25bac8dec3be3 /Python/formatter_unicode.c | |
parent | 7d3957d92d416e3f169be669c6ea2f8f8dbd5565 (diff) | |
download | cpython-9927bb7a2e04addea58d3df36ca4ea47113b0192.tar.gz |
Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
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 2fe446a1b0..a6516dceeb 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; |