From 0bdab68475ad71c5dbf927ed87503da3e36a3142 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 2 Apr 2009 18:41:40 +0000 Subject: [PATCH] Rewrap some long lines. --- Objects/longobject.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index e5e23dfdb92..598c873f595 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -4092,8 +4092,10 @@ PyLong_GetInfo(void) 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;