Commit 436622b9 authored by Mark Dickinson's avatar Mark Dickinson

Rewrap some long lines.

parent 234fae8b
...@@ -4092,8 +4092,10 @@ PyLong_GetInfo(void) ...@@ -4092,8 +4092,10 @@ PyLong_GetInfo(void)
int_info = PyStructSequence_New(&Int_InfoType); int_info = PyStructSequence_New(&Int_InfoType);
if (int_info == NULL) if (int_info == NULL)
return NULL; return NULL;
PyStructSequence_SET_ITEM(int_info, field++, PyLong_FromLong(PyLong_SHIFT)); PyStructSequence_SET_ITEM(int_info, field++,
PyStructSequence_SET_ITEM(int_info, field++, PyLong_FromLong(sizeof(digit))); PyLong_FromLong(PyLong_SHIFT));
PyStructSequence_SET_ITEM(int_info, field++,
PyLong_FromLong(sizeof(digit)));
if (PyErr_Occurred()) { if (PyErr_Occurred()) {
Py_CLEAR(int_info); Py_CLEAR(int_info);
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment