Skip to content

Commit ceead6d

Browse files
committed
Style consistency, so "grep ^function ..." works as expected.
1 parent 43277d6 commit ceead6d

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)