From: Fred Drake Date: Thu, 17 Oct 2002 19:48:27 +0000 (+0000) Subject: Clean up some whitespace to be consistent with Python's C style. X-Git-Tag: v2.3c1~3747 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=330f72c6dfcd27479e1a9b707f20f24f3c4326a5;p=thirdparty%2FPython%2Fcpython.git Clean up some whitespace to be consistent with Python's C style. --- diff --git a/Include/structseq.h b/Include/structseq.h index ee6a04ec3625..e662916fe4ca 100644 --- a/Include/structseq.h +++ b/Include/structseq.h @@ -6,7 +6,7 @@ #ifdef __cplusplus extern "C" { #endif - + typedef struct PyStructSequence_Field { char *name; char *doc; @@ -21,9 +21,9 @@ typedef struct PyStructSequence_Desc { extern char* PyStructSequence_UnnamedField; -PyAPI_FUNC(void) PyStructSequence_InitType(PyTypeObject *type, - PyStructSequence_Desc *desc); - +PyAPI_FUNC(void) PyStructSequence_InitType(PyTypeObject *type, + PyStructSequence_Desc *desc); + PyAPI_FUNC(PyObject *) PyStructSequence_New(PyTypeObject* type); typedef struct {