bpo-30465: Fix C downcast warning on Windows in ast.c (#6593)

ast.c: fstring_fix_node_location() downcasts a pointer difference to
a C int. Replace int with Py_ssize_t to fix the compiler warning.
diff --git a/Python/ast.c b/Python/ast.c
index e2092f0..0d692ff 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -4313,7 +4313,7 @@
                     break;
                 start--;
             }
-            cols += substr - start;
+            cols += (int)(substr - start);
             /* Fix lineno in mulitline strings. */
             while ((substr = strchr(substr + 1, '\n')))
                 lines--;