diff options
author | Fred Drake <fdrake@acm.org> | 2002-10-17 19:48:27 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-10-17 19:48:27 (GMT) |
commit | 330f72c6dfcd27479e1a9b707f20f24f3c4326a5 (patch) | |
tree | 5c47b713302c8e2d1ff4ee186955861ef2218470 /Include/structseq.h | |
parent | 3296dcc65deb3a9e482427ac477b00596513c0c3 (diff) | |
download | cpython-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/structseq.h')
-rw-r--r-- | Include/structseq.h | 8 |
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 { |