Skip to content

Commit 7cea756

Browse files
author
fdrake
committed
Style consistency, so "grep ^function ..." works as expected.
git-svn-id: http://svn.python.org/projects/python/trunk@31062 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 81d3a67 commit 7cea756

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Python/modsupport.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ Py_InitModule4(char *name, PyMethodDef *methods, char *doc,
8989

9090
/* Helper for mkvalue() to scan the length of a format */
9191

92-
static int countformat(char *format, int endchar)
92+
static int
93+
countformat(char *format, int endchar)
9394
{
9495
int count = 0;
9596
int level = 0;
@@ -400,7 +401,8 @@ do_mkvalue(char **p_format, va_list *p_va)
400401
}
401402

402403

403-
PyObject *Py_BuildValue(char *format, ...)
404+
PyObject *
405+
Py_BuildValue(char *format, ...)
404406
{
405407
va_list va;
406408
PyObject* retval;

0 commit comments

Comments
 (0)