Issue #18783: Removed existing mentions of Python long type in docstrings,

error messages and comments.
This commit is contained in:
Serhiy Storchaka 2013-08-27 19:40:23 +03:00
parent 4af4d273bd
commit 9594942716
40 changed files with 137 additions and 150 deletions

View file

@ -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;