]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clean up some whitespace to be consistent with Python's C style.
authorFred Drake <fdrake@acm.org>
Thu, 17 Oct 2002 19:48:27 +0000 (19:48 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 17 Oct 2002 19:48:27 +0000 (19:48 +0000)
Include/structseq.h

index ee6a04ec36252c1ccaaeed7a6b051bb8eb3228a7..e662916fe4ca157404f5a7188c65aa0057964750 100644 (file)
@@ -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 {