[Python-checkins] r88660 - python/branches/py3k/Modules/posixmodule.c

benjamin.peterson python-checkins at python.org
Sat Feb 26 22:35:16 CET 2011


Author: benjamin.peterson
Date: Sat Feb 26 22:35:16 2011
New Revision: 88660

Log:
revert accidental formatting change

Modified:
   python/branches/py3k/Modules/posixmodule.c

Modified: python/branches/py3k/Modules/posixmodule.c
==============================================================================
--- python/branches/py3k/Modules/posixmodule.c	(original)
+++ python/branches/py3k/Modules/posixmodule.c	Sat Feb 26 22:35:16 2011
@@ -5935,8 +5935,9 @@
     int flags = 0;
     sf.headers = NULL;
     sf.trailers = NULL;
-    static char *keywords[] = {"out", "in", "offset", "count", "headers",
-                               "trailers", "flags", NULL};
+    static char *keywords[] = {"out", "in",
+                                "offset", "count",
+                                "headers", "trailers", "flags", NULL};
 
 #ifdef __APPLE__
     if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&O&|OOi:sendfile",


More information about the Python-checkins mailing list