Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the
same line as function name.
diff --git a/Modules/clinic/_opcode.c.h b/Modules/clinic/_opcode.c.h
index 945c904..196a2ee 100644
--- a/Modules/clinic/_opcode.c.h
+++ b/Modules/clinic/_opcode.c.h
@@ -22,8 +22,7 @@
     PyObject *oparg = Py_None;
     int _return_value;
 
-    if (!PyArg_ParseTuple(args,
-        "i|O:stack_effect",
+    if (!PyArg_ParseTuple(args, "i|O:stack_effect",
         &opcode, &oparg))
         goto exit;
     _return_value = _opcode_stack_effect_impl(module, opcode, oparg);
@@ -34,4 +33,4 @@
 exit:
     return return_value;
 }
-/*[clinic end generated code: output=dbe45148bc21ecdf input=a9049054013a1b77]*/
+/*[clinic end generated code: output=8ee7cb735705e8b3 input=a9049054013a1b77]*/