diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-04-02 18:41:40 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-04-02 18:41:40 (GMT) |
commit | 0bdab68475ad71c5dbf927ed87503da3e36a3142 (patch) | |
tree | 440c8e000ff7bf58b53154ee2db286f89d09a1a0 /Objects/longobject.c | |
parent | 5561982b64613c7f564a70204e65aa8fc3926c24 (diff) | |
download | cpython-0bdab68475ad71c5dbf927ed87503da3e36a3142.zip cpython-0bdab68475ad71c5dbf927ed87503da3e36a3142.tar.gz cpython-0bdab68475ad71c5dbf927ed87503da3e36a3142.tar.bz2 |
Rewrap some long lines.
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r-- | Objects/longobject.c | 6 |
1 files changed, 4 insertions, 2 deletions
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 @@ 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; |