summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-10-17 19:48:27 (GMT)
committerFred Drake <fdrake@acm.org>2002-10-17 19:48:27 (GMT)
commit330f72c6dfcd27479e1a9b707f20f24f3c4326a5 (patch)
tree5c47b713302c8e2d1ff4ee186955861ef2218470 /Include
parent3296dcc65deb3a9e482427ac477b00596513c0c3 (diff)
downloadcpython-330f72c6dfcd27479e1a9b707f20f24f3c4326a5.zip
cpython-330f72c6dfcd27479e1a9b707f20f24f3c4326a5.tar.gz
cpython-330f72c6dfcd27479e1a9b707f20f24f3c4326a5.tar.bz2
Clean up some whitespace to be consistent with Python's C style.
Diffstat (limited to 'Include')
-rw-r--r--Include/structseq.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/structseq.h b/Include/structseq.h
index ee6a04e..e662916 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 {