Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
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 @@
     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;