Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the
same line as function name.
diff --git a/Modules/clinic/_cryptmodule.c.h b/Modules/clinic/_cryptmodule.c.h
index cd63bd1..b8ec31e 100644
--- a/Modules/clinic/_cryptmodule.c.h
+++ b/Modules/clinic/_cryptmodule.c.h
@@ -26,8 +26,7 @@
     const char *word;
     const char *salt;
 
-    if (!PyArg_ParseTuple(args,
-        "ss:crypt",
+    if (!PyArg_ParseTuple(args, "ss:crypt",
         &word, &salt))
         goto exit;
     return_value = crypt_crypt_impl(module, word, salt);
@@ -35,4 +34,4 @@
 exit:
     return return_value;
 }
-/*[clinic end generated code: output=b5b8d977189d19ea input=a9049054013a1b77]*/
+/*[clinic end generated code: output=22c295c9bce018c4 input=a9049054013a1b77]*/