summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-01-30 15:08:25 (GMT)
committerFred Drake <fdrake@acm.org>2003-01-30 15:08:25 (GMT)
commitceead6d9571673200848a3bc9e4e046832166e20 (patch)
treeacd4062a23acdf8402aca42b97da12c2330282d5 /Python
parent43277d64eb5e008e59009bd03887d66c134445ef (diff)
downloadcpython-ceead6d9571673200848a3bc9e4e046832166e20.zip
cpython-ceead6d9571673200848a3bc9e4e046832166e20.tar.gz
cpython-ceead6d9571673200848a3bc9e4e046832166e20.tar.bz2
Style consistency, so "grep ^function ..." works as expected.
Diffstat (limited to 'Python')
-rw-r--r--Python/modsupport.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index a2a095e..bca3d6f 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -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;