Rewrap some long lines.
diff --git a/Objects/longobject.c b/Objects/longobject.c
index e5e23df..598c873 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -4092,8 +4092,10 @@
 	int_info = PyStructSequence_New(&Int_InfoType);
 	if (int_info == NULL)
 		return NULL;
-	PyStructSequence_SET_ITEM(int_info, field++, PyLong_FromLong(PyLong_SHIFT));
-	PyStructSequence_SET_ITEM(int_info, field++, PyLong_FromLong(sizeof(digit)));
+	PyStructSequence_SET_ITEM(int_info, field++,
+				  PyLong_FromLong(PyLong_SHIFT));
+	PyStructSequence_SET_ITEM(int_info, field++,
+				  PyLong_FromLong(sizeof(digit)));
 	if (PyErr_Occurred()) {
 		Py_CLEAR(int_info);
 		return NULL;