]> granicus.if.org Git - python/commitdiff
Style consistency, so "grep ^function ..." works as expected.
authorFred Drake <fdrake@acm.org>
Thu, 30 Jan 2003 15:08:25 +0000 (15:08 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 30 Jan 2003 15:08:25 +0000 (15:08 +0000)
Python/modsupport.c

index a2a095ed3e1f4e7101b1a1e7c1eb422696931dbd..bca3d6f5c5dfd8571c16907233959a8554a0c58c 100644 (file)
@@ -89,7 +89,8 @@ Py_InitModule4(char *name, PyMethodDef *methods, char *doc,
 
 /* Helper for mkvalue() to scan the length of a format */
 
-static int countformat(char *format, int endchar)
+static int
+countformat(char *format, int endchar)
 {
        int count = 0;
        int level = 0;
@@ -400,7 +401,8 @@ do_mkvalue(char **p_format, va_list *p_va)
 }
 
 
-PyObject *Py_BuildValue(char *format, ...)
+PyObject *
+Py_BuildValue(char *format, ...)
 {
        va_list va;
        PyObject* retval;