]> granicus.if.org Git - python/commitdiff
Rewrap some long lines.
authorMark Dickinson <dickinsm@gmail.com>
Thu, 2 Apr 2009 18:41:40 +0000 (18:41 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Thu, 2 Apr 2009 18:41:40 +0000 (18:41 +0000)
Objects/longobject.c

index e5e23dfdb92862ce294b0dc3173e2d1b53ae8ad3..598c873f5954248aadbb285999e1472ee0dc2e6f 100644 (file)
@@ -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;