[Python-checkins] r71061 - python/branches/py3k/Objects/longobject.c

mark.dickinson python-checkins at python.org
Thu Apr 2 20:41:40 CEST 2009


Author: mark.dickinson
Date: Thu Apr  2 20:41:40 2009
New Revision: 71061

Log:
Rewrap some long lines.


Modified:
   python/branches/py3k/Objects/longobject.c

Modified: python/branches/py3k/Objects/longobject.c
==============================================================================
--- python/branches/py3k/Objects/longobject.c	(original)
+++ python/branches/py3k/Objects/longobject.c	Thu Apr  2 20:41:40 2009
@@ -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;


More information about the Python-checkins mailing list